12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // PlayerViewController+otherDelegate.h
- // 隐私保护
- //
- // Created by xd h on 2023/10/13.
- //
- #import "PlayerViewController.h"
- #import "uploadFileDataModel.h"
- #import "uploadFileManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController (otherDelegate)
- //ComontAlretViewControllerDelegate
- - (void)CommonAlertokBtnClickPressed;
- - (void)CommonAlertCancelBtnClickPressed;
- - (void)checkVersionFun;
- //强制重启
- - (void)updateForceStartFun;
- - (void)beginGotoUploadFileFun:(NSNotification *)notification;
- - (void)suspendUploadFileFun:(NSNotification *)notification;
- - (void)applyUploadFileServiceResponseFun:(NSDictionary *)dataDict;
- - (void)upLoadFileFunServiceResponseFun:(NSDictionary *)dataDict;
- - (void)getCouldPhoneBaseInfoResponseFun:(NSDictionary *)dataDict;
- - (void)getCouldPhoneSysInfoResponseFun:(NSDictionary *)dataDict;
- - (void)getCouldPhoneTvStatusResponseFun:(NSDictionary *)dataDict;
- @end
- NS_ASSUME_NONNULL_END
|