方法一:

- (void)exitApplication

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

 

方法二:

[[UIApplication sharedApplication] terminateWithSuccess];

posted on 2016-06-22 13:50  llcay  阅读(2488)  评论(0编辑  收藏  举报