Files
featherVoice/TUIKit/TUIChat/UI_Classic/Cell/Reply/TUIReplyMessageCell.h
2025-08-08 10:49:36 +08:00

39 lines
995 B
Objective-C

//
// 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