PlayerViewController+otherDelegate.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface PlayerViewController (otherDelegate)
  11. //ComontAlretViewControllerDelegate
  12. - (void)CommonAlertokBtnClickPressed;
  13. - (void)CommonAlertCancelBtnClickPressed;
  14. - (void)checkVersionFun;
  15. //强制重启
  16. - (void)updateForceStartFun;
  17. - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
  18. - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
  19. - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
  20. - (void)createFolderBeginNotFun:(NSNotification *)notification;
  21. - (void)createFolderResponseFun:(NSDictionary *)dataDict;
  22. - (void)getFolderListBeginNotFun:(NSNotification *)notification;
  23. - (void)getFolderListResponseFun:(NSDictionary *)dataDict;
  24. - (void)searchFileListBeginFun:(NSNotification *)notification;
  25. - (void)searchFileListResponseFun:(NSDictionary *)dataDict;
  26. - (void)handleDownloadResponseFunBy:(id)message;
  27. - (void)checkAllTaskFun;
  28. //检测是否正在进行的文件传输任务
  29. - (void)checkFileTransfeTaskFun;
  30. - (void)addCommandSendTaskFunWithType:(NSString*)type WithCommandStr:(NSString*)commandStr;
  31. - (void)deleteCommandSendTaskFunWith:(NSString*)type;
  32. - (void)getExtraFilesResponseFun:(NSDictionary *)dataDict;
  33. - (void)saveLastImageFun;
  34. - (void)readLastImageFun;
  35. - (void)getExtraMediaEventResponseFun:(NSDictionary *)dataDict;
  36. - (void)showInsertPopViewFun:(NSString*)name;
  37. @end
  38. NS_ASSUME_NONNULL_END