MOUserLinkCell.h 728 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MOUserLinkCell.h
  3. // TUIChat
  4. //
  5. // Created by SuperC on 2025/10/13.
  6. //
  7. #import <TIMCommon/TUIBubbleMessageCell.h>
  8. #import "MOUserLinkCellData.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOUserLinkCell : TUIBubbleMessageCell
  11. @property (nonatomic, strong) UIView *bgView;
  12. @property (nonatomic, strong) UILabel *titleLab;
  13. @property (nonatomic, strong) UILabel *contentLab;
  14. @property (nonatomic, strong) UIView *lineView;
  15. @property (nonatomic, strong) UILabel *detailTagLab;
  16. @property (nonatomic, strong) UIImageView *arrowImgView;
  17. @property (nonatomic, strong) UIButton *actionBtn;
  18. @property (nonatomic, strong) MOUserLinkCellData *dataModel;
  19. - (void)fillWithData:(MOUserLinkCellData *)data;
  20. @end
  21. NS_ASSUME_NONNULL_END