TUIReferenceMessageCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // TUIReferenceMessageCell.h
  3. // TUIChat
  4. //
  5. // Created by wyl on 2022/5/24.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCell.h>
  9. #import "TUIChatDefine.h"
  10. @class TUIReplyMessageCellData;
  11. @class TUIReplyQuoteViewData;
  12. @class TUIImageVideoReplyQuoteViewData;
  13. @class TUIVoiceFileReplyQuoteViewData;
  14. @class TUIMergeReplyQuoteViewData;
  15. @class TUIReferenceMessageCellData;
  16. @class TUITextView;
  17. NS_ASSUME_NONNULL_BEGIN
  18. @interface TUIReferenceMessageCell : TUIBubbleMessageCell
  19. /**
  20. *
  21. * Border of quote view
  22. */
  23. @property(nonatomic, strong) CALayer *quoteBorderLayer;
  24. @property(nonatomic, strong) UIView *quoteView;
  25. @property(nonatomic, strong) UILabel *senderLabel;
  26. @property(nonatomic, strong) TUIReferenceMessageCellData *referenceData;
  27. @property(nonatomic, strong) TUITextView *textView;
  28. @property(nonatomic, strong) NSString *selectContent;
  29. @property(nonatomic, strong) TUIReferenceSelectAllContentCallback selectAllContentContent;
  30. - (void)fillWithData:(TUIReferenceMessageCellData *)data;
  31. @end
  32. NS_ASSUME_NONNULL_END