PlayerViewController+otherDelegate.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // PlayerViewController+otherDelegate.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/10/13.
  6. //
  7. #import "PlayerViewController.h"
  8. #import "couldPhoneCommonModel.h"
  9. #import "noticeModel.h"
  10. #import "HaveNoticeView.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface PlayerViewController (otherDelegate)
  13. //ComontAlretViewControllerDelegate
  14. - (void)CommonAlertokBtnClickPressed;
  15. - (void)CommonAlertCancelBtnClickPressed;
  16. - (void)checkVersionFun;
  17. //强制重启
  18. - (void)updateForceStartFun;
  19. - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
  20. - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
  21. - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
  22. - (void)createFolderBeginNotFun:(NSNotification *)notification;
  23. - (void)createFolderResponseFun:(NSDictionary *)dataDict;
  24. - (void)getFolderListBeginNotFun:(NSNotification *)notification;
  25. - (void)getFolderListResponseFun:(NSDictionary *)dataDict;
  26. - (void)searchFileListBeginFun:(NSNotification *)notification;
  27. - (void)searchFileListResponseFun:(NSDictionary *)dataDict;
  28. - (void)handleDownloadResponseFunBy:(id)message;
  29. - (void)checkAllTaskFun;
  30. //检测是否正在进行的文件传输任务
  31. - (void)checkFileTransfeTaskFun;
  32. - (void)addCommandSendTaskFunWithType:(NSString*)type WithCommandStr:(NSString*)commandStr;
  33. - (void)deleteCommandSendTaskFunWith:(NSString*)type;
  34. - (void)getExtraFilesResponseFun:(NSDictionary *)dataDict;
  35. - (void)saveLastImageFun;
  36. - (void)readLastImageFun;
  37. - (void)getExtraMediaEventResponseFun:(NSDictionary *)dataDict;
  38. - (void)showInsertPopViewFun:(NSString*)name;
  39. @end
  40. NS_ASSUME_NONNULL_END