Files
midi_ios/TUIKit/TUIChat/UI_Classic/Cell/Chat/TUIMergeMessageCell.h
2025-08-14 10:07:49 +08:00

42 lines
1.4 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Created by Tencent on 2023/06/09.
// Copyright © 2023 Tencent. All rights reserved.
/**
*
* This document declares the TUIMergeMessageCell class.
* When multiple messages are merged and forwarded, a merged-forward message will be displayed on the chat interface.
*
* When we receive a merged-forward message, it is usually displayed in the chat interface like this:
* | History of vinson and lynx | -- title
* | vinsonWhen will the new version of the SDK be released | -- abstract1
* | lynxPlan for next Monday, the specific time depends on the system test situation in these two days.. | -- abstract2
* | vinsonOkay.
*/
#import <TIMCommon/TUIMessageCell.h>
#import "TUIMergeMessageCellData.h"
NS_ASSUME_NONNULL_BEGIN
@interface TUIMergeMessageCell : TUIMessageCell
/**
* Title of merged-forward message
*/
@property(nonatomic, strong) UILabel *relayTitleLabel;
/**
* Horizontal dividing line
*/
@property(nonatomic, strong) UIView *separtorView;
/**
* bottom prompt
*/
@property(nonatomic, strong) UILabel *bottomTipsLabel;
@property(nonatomic, strong) TUIMergeMessageCellData *mergeData;
- (void)fillWithData:(TUIMergeMessageCellData *)data;
@end
NS_ASSUME_NONNULL_END