iOS 优雅的退出APP-suspend& terminateWithSuccess

目前主流APP都会有协议更新,同意就继续,不同意就退出的功能。

此前的做法是

exit(0); 

这样的效果有点生硬,和闪退是一样的效果,交互不好,使用如下组合可达到按home键退到后台的动画效果。

// Home键退出后台动画效果,此时后台还是挂起状态
[[UIApplication sharedApplication] performSelector:@selector(suspend)];

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
     // 杀掉应用,这里会有警告⚠️忽略即可,强迫症的话就使用exit(0)吧
     [[UIApplication sharedApplication] performSelector:@selector(terminateWithSuccess)];
});

你可能感兴趣的:(iOS 优雅的退出APP-suspend& terminateWithSuccess)