TUIReplyMessageCell.h 995 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // TUIReplyMessageCell.h
  3. // TUIChat
  4. //
  5. // Created by harvy on 2021/11/11.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCell.h>
  9. #import <TIMCommon/TUITextView.h>
  10. #import "TUIChatDefine.h"
  11. @class TUIReplyMessageCellData;
  12. @class TUIReplyQuoteViewData;
  13. @class TUIImageVideoReplyQuoteViewData;
  14. @class TUIVoiceFileReplyQuoteViewData;
  15. @class TUIMergeReplyQuoteViewData;
  16. NS_ASSUME_NONNULL_BEGIN
  17. @interface TUIReplyMessageCell : TUIBubbleMessageCell
  18. @property(nonatomic, strong) UIView *quoteBorderLine;
  19. @property(nonatomic, strong) UIView *quoteView;
  20. @property(nonatomic, strong) TUITextView *textView;
  21. @property(nonatomic, strong) NSString *selectContent;
  22. @property(nonatomic, strong) TUIReplySelectAllContentCallback selectAllContentContent;
  23. @property(nonatomic, strong) UILabel *senderLabel;
  24. @property(nonatomic, strong) TUIReplyMessageCellData *replyData;
  25. - (void)fillWithData:(TUIReplyMessageCellData *)data;
  26. @end
  27. NS_ASSUME_NONNULL_END