退出当前应用程序

Posted i旅程

tags:

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

/*
 *退出当前应用程序
 */
+ (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);
        }
       
    }];
    
}
 

以上是关于退出当前应用程序的主要内容,如果未能解决你的问题,请参考以下文章

mui实现退出当前应用

uniapp退出关闭当前小程序或APP

退出程序

Android-完全退出当前应用程序的四种方法

Android 怎么退出整个应用程序

Spotify android 应用程序如何保存当前的音乐播放时间?就像您退出应用程序并在前几天打开它一样?