| 12345678910111213141516171819202122232425262728 |
- //
- // MOUserLinkCellData.h
- // TUIChat
- //
- // Created by SuperC on 2025/10/13.
- //
- #import <TIMCommon/TUIBubbleMessageCellData.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOUserLinkCellData : TUIBubbleMessageCellData
- // type == 100 私聊, 标题, 内容, 链接
- @property(nonatomic, assign) NSInteger type;// 类型,非空
- @property(nonatomic, copy) NSString *title;// 标题,可空,当类型(1,2,5,7)时非空
- @property(nonatomic, copy) NSString *content;// 内容,非空
- @property(nonatomic, copy) NSString *link;// 链接,可空,当类型(1,4,5,6,7,8)时非空
- @property(nonatomic, copy) NSString *img;//
- @property(nonatomic, copy) NSString *linkStr;// content中链接对应的文案,可空,当类型(7,8)时非空
- - (CGSize)contentSize;
- @end
- NS_ASSUME_NONNULL_END
|