1234567891011121314151617181920212223242526 |
- //
- // PlayerViewController+otherDelegate.m
- // 隐私保护
- //
- // Created by xd h on 2023/10/13.
- //
- #import "PlayerViewController+otherDelegate.h"
- @implementation PlayerViewController (otherDelegate)
- #pragma mark ComontAlretViewControllerDelegate
- - (void)CommonAlertokBtnClickPressed{
- //HLog("11111");
-
- self.isLoginAgainType = YES;
-
- [[NSNotificationCenter defaultCenter] postNotificationName:lockBypwdNotification object:nil];
- }
- - (void)CommonAlertCancelBtnClickPressed{
- HLog("强制退出app");
-
- exit(0);/*强制退出app*/
- }
- @end
|