码迷,mamicode.com
首页 > 移动开发 > 详细

APP强制退出

时间:2016-02-19 12:03:40      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

第一种方法:

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

 

 1 - (void)exitApplication {
 2     
 3     AppDelegate *app = [UIApplication sharedApplication].delegate;
 4     UIWindow *window = app.window;
 5     window.backgroundColor = [UIColor redColor];
 6 
 7     
 8     [UIView animateWithDuration:1.0f animations:^{
 9         window.alpha = 0;
10         window.frame = CGRectMake(0, window.bounds.size.width, 0, 0);
11     } completion:^(BOOL finished) {
12         exit(0);
13     }];
14     
15 }

 

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

 

1       [self performSelector:@selector(sayByeBye)];
2      
3 
4 -(void)sayByeBye{
5     abort();
6 }

 

APP强制退出

标签:

原文地址:http://www.cnblogs.com/-yun/p/5200135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!