123456789101112131415161718192021222324252627282930 |
- //
- // WFCCVideoMessageContent.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/2.
- // Copyright © 2017年 wildfire chat. All rights reserved.
- //
- #import "WFCCMediaMessageContent.h"
- #import <UIKit/UIKit.h>
- /**
- 图片消息
- */
- @interface WFCCVideoMessageContent : WFCCMediaMessageContent
- /**
- 构造方法
- @param image 图片
- @return 图片消息
- */
- + (instancetype)contentPath:(NSString *)localPath thumbnail:(UIImage *)image;
- /**
- 缩略图
- */
- @property (nonatomic, strong)UIImage *thumbnail;
- @end
|