TUILinkCell.h 494 B

1234567891011121314151617181920212223
  1. //
  2. // MyCustomCell.h
  3. // TUIKitDemo
  4. //
  5. // Created by annidyfeng on 2019/6/10.
  6. // Copyright © 2019 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCell.h>
  9. #import <TIMCommon/TUIMessageCell.h>
  10. #import "TUILinkCellData.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface TUILinkCell : TUIBubbleMessageCell
  13. @property UILabel *myTextLabel;
  14. @property UILabel *myLinkLabel;
  15. @property TUILinkCellData *customData;
  16. - (void)fillWithData:(TUILinkCellData *)data;
  17. @end
  18. NS_ASSUME_NONNULL_END