123456789101112131415161718192021222324252627282930 |
- //
- // PlayerViewController+fileTransfer.h
- // 隐私保护
- //
- // Created by xd h on 2024/1/3.
- //
- #import "PlayerViewController.h"
- #import "uploadFileDataModel.h"
- #import "RCCommandHelp.h"
- #import "uploadFileManager.h"
- #import "cachesFileManager.h"
- #import <MJExtension.h>
- #import "connectDeviceManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController (fileTransfer)
- - (void)beginGotoUploadFileFun:(NSNotification *)notification;
- - (void)suspendUploadFileFun:(NSNotification *)notification;
- - (void)applyUploadFileServiceResponseFun:(NSDictionary *)dataDict;
- - (void)upLoadFileFunServiceResponseFun:(NSDictionary *)dataDict;
- - (void)beginGotoBackupsFileFun:(NSNotification *)notification;
- - (void)applyBackupsFileServiceResponseFun:(NSDictionary *)dataDict;
- - (void)backupsFileFunServiceResponseFun:(NSDictionary *)dataDict;
- @end
- NS_ASSUME_NONNULL_END
|