42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
|
|
|
|||
|
|
// 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
|
|||
|
|
* | vinson:When will the new version of the SDK be released? | -- abstract1
|
|||
|
|
* | lynx:Plan for next Monday, the specific time depends on the system test situation in these two days.. | -- abstract2
|
|||
|
|
* | vinson:Okay.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#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
|