网上还有一种退出程序的方法,就是使用未公开的API,这种方法更不靠谱,因为使用未公开API的使用是不能通过AppStore申核的,而且我在4.0版本中试验是无效的。
那么只能使用exit(0)退出应用。考虑到这种方式只是缺少退出时的动画效果,那么可以加上一个动画,动画完成后再调用exit退出程序。
在实际的开发过程中可能会有多个端登录,此时就会被迫挤下线,这个时候如何直接提示然后就退出应用就会使得用户体验很不和谐,为此我们可以添加一些动画效果来给予用户更友好的用户体验;
- - (void)exitApplication {
- [UIView beginAnimations:@"exitApplication" context:nil];
- [UIView setAnimationDuration:0.5];
- [UIView setAnimationDelegate:self];
- [UIView setAnimationTransition:UIViewAnimationCurveEaseOut forView:self.window cache:NO];
- [UIView setAnimationDidStopSelector:@selector(animationFinished:finished:context:)];
- self.window.bounds = CGRectMake(0, 0, 0, 0);
- [UIView commitAnimations];
- }
时间: 2024-10-06 23:26:06