123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // PlayerViewController+otherDelegate.h
- // 隐私保护
- //
- // Created by xd h on 2023/10/13.
- //
- #import "PlayerViewController.h"
- #import "couldPhoneCommonModel.h"
- #import "noticeModel.h"
- #import "HaveNoticeView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController (otherDelegate)
- //ComontAlretViewControllerDelegate
- - (void)CommonAlertokBtnClickPressed;
- - (void)CommonAlertCancelBtnClickPressed;
- - (void)checkVersionFun;
- //强制重启
- - (void)updateForceStartFun;
- - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
- - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
- - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
- - (void)createFolderBeginNotFun:(NSNotification *)notification;
- - (void)createFolderResponseFun:(NSDictionary *)dataDict;
- - (void)getFolderListBeginNotFun:(NSNotification *)notification;
- - (void)getFolderListResponseFun:(NSDictionary *)dataDict;
- - (void)searchFileListBeginFun:(NSNotification *)notification;
- - (void)searchFileListResponseFun:(NSDictionary *)dataDict;
- - (void)handleDownloadResponseFunBy:(id)message;
- - (void)checkAllTaskFun;
- //检测是否正在进行的文件传输任务
- - (void)checkFileTransfeTaskFun;
- - (void)addCommandSendTaskFunWithType:(NSString*)type WithCommandStr:(NSString*)commandStr;
- - (void)deleteCommandSendTaskFunWith:(NSString*)type;
- - (void)getExtraFilesResponseFun:(NSDictionary *)dataDict;
- - (void)saveLastImageFun;
- - (void)readLastImageFun;
- - (void)getExtraMediaEventResponseFun:(NSDictionary *)dataDict;
- - (void)showInsertPopViewFun:(NSString*)name;
- @end
- NS_ASSUME_NONNULL_END
|