| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // TUIReplyMessageCell.h
- // TUIChat
- //
- // Created by harvy on 2021/11/11.
- // Copyright © 2023 Tencent. All rights reserved.
- //
- #import <TIMCommon/TUIBubbleMessageCell.h>
- #import <TIMCommon/TUITextView.h>
- #import "TUIChatDefine.h"
- @class TUIReplyMessageCellData;
- @class TUIReplyQuoteViewData;
- @class TUIImageVideoReplyQuoteViewData;
- @class TUIVoiceFileReplyQuoteViewData;
- @class TUIMergeReplyQuoteViewData;
- NS_ASSUME_NONNULL_BEGIN
- @interface TUIReplyMessageCell : TUIBubbleMessageCell
- @property(nonatomic, strong) UIView *quoteBorderLine;
- @property(nonatomic, strong) UIView *quoteView;
- @property(nonatomic, strong) TUITextView *textView;
- @property(nonatomic, strong) NSString *selectContent;
- @property(nonatomic, strong) TUIReplySelectAllContentCallback selectAllContentContent;
- @property(nonatomic, strong) UILabel *senderLabel;
- @property(nonatomic, strong) TUIReplyMessageCellData *replyData;
- - (void)fillWithData:(TUIReplyMessageCellData *)data;
- @end
- NS_ASSUME_NONNULL_END
|