-7

可能重复:
退出 iPhone 应用程序的正确方法?

如何使我的应用程序崩溃?

如果用户在此代码中按下关闭,我想使应用程序崩溃

    UIAlertView *alertView = [[UIAlertView alloc] 
                              initWithTitle:@"Alert!" 
                              message:@"What To Do To You App!" 
                              delegate:self 
                              cancelButtonTitle:@"Close"
                              otherButtonTitles:@"Open In Safari",nil];



- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
// the user clicked one of the OK/Cancel buttons
if (buttonIndex == 1)
{
    NSLog(@"Open in Safari");
}
else
{
    NSLog(@"Close");
}
}
4

3 回答 3

4

在代码附近除以零怎么样!

于 2012-05-12T16:45:18.087 回答
3

利用-

[[NSThread mainThread] exit];
于 2012-05-12T16:46:11.340 回答
2

你不应该在 iOS 上添加一个按钮来关闭/退出你的应用程序。

于 2012-05-12T17:04:32.697 回答