iOS强制退出APP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS强制退出APP相关的知识,希望对你有一定的参考价值。

方法一:

- (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];

以上是关于iOS强制退出APP的主要内容,如果未能解决你的问题,请参考以下文章

APP强制退出

苹果平板app怎么强制退出

用户拒绝授权不得强制退出App,这能有效整治流氓软件的霸王条款吗?

强制退出APP(uni-app)

在 iOS 7 中处理强制退出 [关闭]

如果应用程序被强制退出,则处理 IOS 远程通知