APP强制退出

时间:2022-03-09 19:32:32

第一种方法:

企业版可以用,Appstore可能被拒,慎用

 - (void)exitApplication {

     AppDelegate *app = [UIApplication sharedApplication].delegate;
UIWindow *window = app.window;
window.backgroundColor = [UIColor redColor]; [UIView animateWithDuration:1.0f animations:^{
window.alpha = ;
window.frame = CGRectMake(, window.bounds.size.width, , );
} completion:^(BOOL finished) {
exit();
}]; }

第二种方法 - 推荐,官方例子经常出现

       [self performSelector:@selector(sayByeBye)];

 -(void)sayByeBye{
abort();
}

第二种方法用模拟器测试不出来。只能真机。把第一个的exit 替换 abort也有动画效果;