TUIFaceMessageCell.h 468 B

1234567891011121314151617181920
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. #import <TIMCommon/TUIBubbleMessageCell.h>
  4. #import <TIMCommon/TUIMessageCell.h>
  5. #import "TUIFaceMessageCellData.h"
  6. @interface TUIFaceMessageCell : TUIBubbleMessageCell
  7. /**
  8. *
  9. * Image view for the resource of emticon
  10. */
  11. @property(nonatomic, strong) UIImageView *face;
  12. @property TUIFaceMessageCellData *faceData;
  13. - (void)fillWithData:(TUIFaceMessageCellData *)data;
  14. @end