PlayerViewController+otherDelegate.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. @end
  29. NS_ASSUME_NONNULL_END