123456789101112131415161718192021222324252627282930313233343536 |
- //
- // PlayerViewController+otherDelegate.h
- // 隐私保护
- //
- // Created by xd h on 2023/10/13.
- //
- #import "PlayerViewController.h"
- #import "couldPhoneCommonModel.h"
- #import "noticeModel.h"
- #import "HaveNoticeView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController (otherDelegate)
- //ComontAlretViewControllerDelegate
- - (void)CommonAlertokBtnClickPressed;
- - (void)CommonAlertCancelBtnClickPressed;
- - (void)checkVersionFun;
- //强制重启
- - (void)updateForceStartFun;
- - (void)checkAllTaskFun;
- #pragma mark 保存截图到相册
- - (void)screenShotToPhoneFun;
- - (void)saveLastImageFun;
- - (void)readLastImageFun;
- @end
- NS_ASSUME_NONNULL_END
|