标签:style io ar os sp on bs line size
- (void)exitApplication {
OAAppDelegate *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);//
}];
}
标签:style io ar os sp on bs line size
原文地址:http://www.cnblogs.com/tx8899/p/4082750.html