Files
midi_ios/TUIKit/TUIChat/UI_Classic/Cell/Reply/TUIReplyMessageCell.h

39 lines
995 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// 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