ConversationListViewController.h 742 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ConversationListViewController.h
  3. // ShareExtension
  4. //
  5. // Created by Tom Lee on 2020/10/6.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ConversationListViewController : UIViewController
  11. //文本
  12. @property(nonatomic, strong)NSString *textMessageContent;
  13. //链接
  14. @property(nonatomic, strong)NSString *urlTitle;
  15. @property(nonatomic, strong)NSString *url;
  16. @property(nonatomic, strong)NSString *urlThumbnail;
  17. //图片
  18. @property(nonatomic, assign)BOOL *fullImage;
  19. @property(nonatomic, strong)NSMutableArray<NSString *> *imageUrls;
  20. @property(nonatomic, strong)UIImage *image;
  21. //文件
  22. @property(nonatomic, strong)NSString *fileUrl;
  23. @end
  24. NS_ASSUME_NONNULL_END