图片消息
查看图片¶
SDK 在此方法中会默认调用 RCImageSlideController
下载并展示图片。
参数 | 类型 | 说明 |
---|---|---|
model | RCMessageModel | 消息Cell的数据模型 |
- (void)presentImagePreviewController:(RCMessageModel *)model;
本地保存¶
此回调是发送新拍照的图片完成之后,将图片在本地另行存储的回调,开发者可以在此回调中按照开发者的需求,将图片另行保存或执行其他操作。
注意
需要配合 enableSaveNewPhotoToLocalSystem
属性使用。
参数 | 类型 | 说明 |
---|---|---|
newImage | UIImage | 图片 |
- (void)saveNewPhotoToLocalSystemAfterSendingSuccess:(UIImage *)newImage;