PlayerViewController+otherDelegate.h 676 B

123456789101112131415161718192021222324252627
  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. @end
  20. NS_ASSUME_NONNULL_END