PlayerViewController+otherDelegate.h 627 B

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