TUIImageReplyQuoteViewData.h 745 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // TUIImageReplyQuoteViewData.h
  3. // TUIChat
  4. //
  5. // Created by harvy on 2021/11/25.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import "TUIReplyMessageCellData.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, TUIImageReplyQuoteStatus) {
  11. TUIImageReplyQuoteStatusInit,
  12. TUIImageReplyQuoteStatusDownloading,
  13. TUIImageReplyQuoteStatusSuccess,
  14. TUIImageReplyQuoteStatusFailed,
  15. };
  16. @interface TUIImageReplyQuoteViewData : TUIReplyQuoteViewData
  17. @property(nonatomic, assign) TUIImageReplyQuoteStatus imageStatus;
  18. @property(nonatomic, strong) UIImage *image;
  19. @property(nonatomic, assign) CGSize imageSize;
  20. + (CGSize)displaySizeWithOriginSize:(CGSize)originSize;
  21. - (void)downloadImage;
  22. @end
  23. NS_ASSUME_NONNULL_END