// // TUIChatMediaDataProvider.h // TUIChat // // Created by harvy on 2022/12/20. // Copyright © 2023 Tencent. All rights reserved. // #import #import #import #import "TUIChatMediaSendingManager.h" NS_ASSUME_NONNULL_BEGIN typedef void (^TUIChatMediaDataProviderResultCallback)(BOOL success, NSString *__nullable message, NSString *__nullable path); @protocol TUIChatMediaDataProtocol - (void)selectPhoto; - (void)takePicture; - (void)takeVideo; - (void)multimediaRecord; - (void)selectFile; @end @protocol TUIChatMediaDataListener - (void)onProvideImage:(NSString *)imageUrl; - (void)onProvideImageError:(NSString *)errorMessage; - (void)onProvideVideo:(NSString *)videoUrl snapshot:(NSString *)snapshotUrl duration:(NSInteger)duration placeHolderCellData:(TUIMessageCellData *)placeHolderCellData; - (void)onProvidePlaceholderVideoSnapshot:(NSString *)snapshotUrl SnapImage:(UIImage *)img Completion:(void (^__nullable)(BOOL finished, TUIMessageCellData *placeHolderCellData))completion; - (void)onProvideVideoError:(NSString *)errorMessage; - (void)onProvideFile:(NSString *)fileUrl filename:(NSString *)filename fileSize:(NSInteger)fileSize; - (void)onProvideFileError:(NSString *)errorMessage; - (NSString *)currentConversationID; - (BOOL)isPageAppears; - (void)sendPlaceHolderUIMessage:(TUIMessageCellData *)cellData; - (void)sendMessage:(V2TIMMessage *)message placeHolderCellData:(TUIMessageCellData *)placeHolderCellData; @end @interface TUIChatMediaDataProvider : NSObject @property(nonatomic, weak) UIViewController *presentViewController; @property(nonatomic, weak) id listener; @property(nonatomic, copy) NSString *conversationID; @end NS_ASSUME_NONNULL_END