1234567891011121314151617181920 |
- //
- // PlayerViewController+downloadFile.h
- // 隐私保护
- //
- // Created by xd h on 2024/1/9.
- //
- #import "PlayerViewController.h"
- #import "RCCommandHelp.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController (downloadFile)
- - (void)begindownloadFileFun:(NSNotification *)notification;
- - (void)downloadFileFunServiceResponseFun:(NSData *)fileData with:(BOOL)isDownloadDone;
- - (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentsAtURLs:(NSArray<NSURL *> *)urls;
- @end
- NS_ASSUME_NONNULL_END
|