PlayerViewController+otherDelegate.m 571 B

1234567891011121314151617181920212223242526
  1. //
  2. // PlayerViewController+otherDelegate.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/10/13.
  6. //
  7. #import "PlayerViewController+otherDelegate.h"
  8. @implementation PlayerViewController (otherDelegate)
  9. #pragma mark ComontAlretViewControllerDelegate
  10. - (void)CommonAlertokBtnClickPressed{
  11. //HLog("11111");
  12. self.isLoginAgainType = YES;
  13. [[NSNotificationCenter defaultCenter] postNotificationName:lockBypwdNotification object:nil];
  14. }
  15. - (void)CommonAlertCancelBtnClickPressed{
  16. HLog("强制退出app");
  17. exit(0);/*强制退出app*/
  18. }
  19. @end