WFCCVideoMessageContent.h 520 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // WFCCVideoMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/2.
  6. // Copyright © 2017年 wildfire chat. All rights reserved.
  7. //
  8. #import "WFCCMediaMessageContent.h"
  9. #import <UIKit/UIKit.h>
  10. /**
  11. 图片消息
  12. */
  13. @interface WFCCVideoMessageContent : WFCCMediaMessageContent
  14. /**
  15. 构造方法
  16. @param image 图片
  17. @return 图片消息
  18. */
  19. + (instancetype)contentPath:(NSString *)localPath thumbnail:(UIImage *)image;
  20. /**
  21. 缩略图
  22. */
  23. @property (nonatomic, strong)UIImage *thumbnail;
  24. @end