码迷,mamicode.com
首页 > 其他好文 > 详细

退出当前应用程序

时间:2017-04-10 12:25:39      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:let   animate   span   delegate   ica   运行   finish   ima   nis   

/*
 *退出当前应用程序
 */
+ (void)exitApp;
+ (void)exitApp{
   
    UIWindow *window = [[UIApplication sharedApplication].delegate window];
    //添加动画
    [UIView animateWithDuration:2.0f animations:^{
        window.alpha = 0;
    } completion:^(BOOL finished){
       
        if (finished){
           
            //exit(0):为0时正常运行程序并推出,非0时非正常运行导致程序退出。
            exit(0);
        }
       
    }];
    
}
 

退出当前应用程序

标签:let   animate   span   delegate   ica   运行   finish   ima   nis   

原文地址:http://www.cnblogs.com/iQingYang/p/6688379.html

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