PlayerViewController+otherDelegate.h 656 B

123456789101112131415161718192021222324252627282930313233343536
  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. #import "noticeModel.h"
  10. #import "HaveNoticeView.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface PlayerViewController (otherDelegate)
  13. //ComontAlretViewControllerDelegate
  14. - (void)CommonAlertokBtnClickPressed;
  15. - (void)CommonAlertCancelBtnClickPressed;
  16. - (void)checkVersionFun;
  17. //强制重启
  18. - (void)updateForceStartFun;
  19. - (void)checkAllTaskFun;
  20. #pragma mark 保存截图到相册
  21. - (void)screenShotToPhoneFun;
  22. - (void)saveLastImageFun;
  23. - (void)readLastImageFun;
  24. @end
  25. NS_ASSUME_NONNULL_END