PlayerViewController+otherDelegate.h 949 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // PlayerViewController+otherDelegate.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/10/13.
  6. //
  7. #import "PlayerViewController.h"
  8. #import "uploadFileDataModel.h"
  9. #import "uploadFileManager.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface PlayerViewController (otherDelegate)
  12. //ComontAlretViewControllerDelegate
  13. - (void)CommonAlertokBtnClickPressed;
  14. - (void)CommonAlertCancelBtnClickPressed;
  15. - (void)checkVersionFun;
  16. //强制重启
  17. - (void)updateForceStartFun;
  18. - (void)beginGotoUploadFileFun:(NSNotification *)notification;
  19. - (void)suspendUploadFileFun:(NSNotification *)notification;
  20. - (void)applyUploadFileServiceResponseFun:(NSDictionary *)dataDict;
  21. - (void)upLoadFileFunServiceResponseFun:(NSDictionary *)dataDict;
  22. - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
  23. - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
  24. - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
  25. @end
  26. NS_ASSUME_NONNULL_END