PlayerViewController+otherDelegate.h 878 B

1234567891011121314151617181920212223242526272829303132
  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)beginGotoUploadFileFun:(NSNotification *)notification;
  16. - (void)suspendUploadFileFun:(NSNotification *)notification;
  17. - (void)applyUploadFileServiceResponseFun:(NSDictionary *)dataDict;
  18. - (void)upLoadFileFunServiceResponseFun:(NSDictionary *)dataDict;
  19. - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
  20. - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
  21. - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
  22. @end
  23. NS_ASSUME_NONNULL_END