| 12345678910111213141516171819202122232425262728293031 |
- //
- // MOUserLinkCell.h
- // TUIChat
- //
- // Created by SuperC on 2025/10/13.
- //
- #import <TIMCommon/TUIBubbleMessageCell.h>
- #import "MOUserLinkCellData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOUserLinkCell : TUIBubbleMessageCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) UILabel *titleLab;
- @property (nonatomic, strong) UILabel *contentLab;
- @property (nonatomic, strong) UIView *lineView;
- @property (nonatomic, strong) UILabel *detailTagLab;
- @property (nonatomic, strong) UIImageView *arrowImgView;
- @property (nonatomic, strong) UIButton *actionBtn;
- @property (nonatomic, strong) MOUserLinkCellData *dataModel;
- - (void)fillWithData:(MOUserLinkCellData *)data;
- @end
- NS_ASSUME_NONNULL_END
|