TUIImageMessageCell.h 468 B

1234567891011121314151617
  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 "TUIImageMessageCellData.h"
  6. @interface TUIImageMessageCell : TUIBubbleMessageCell
  7. @property(nonatomic, strong) UIImageView *thumb;
  8. @property(nonatomic, strong) UILabel *progress;
  9. @property TUIImageMessageCellData *imageData;
  10. - (void)fillWithData:(TUIImageMessageCellData *)data;
  11. @end