退出当前应用程序
Posted i旅程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了退出当前应用程序相关的知识,希望对你有一定的参考价值。
/*
*退出当前应用程序
*/
+ (void)exitApp;
+ (void)exitApp{
*退出当前应用程序
*/
+ (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);
}
}];
//添加动画
[UIView animateWithDuration:2.0f animations:^{
window.alpha = 0;
} completion:^(BOOL finished){
if (finished){
//exit(0):为0时正常运行程序并推出,非0时非正常运行导致程序退出。
exit(0);
}
}];
}
以上是关于退出当前应用程序的主要内容,如果未能解决你的问题,请参考以下文章