-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 に答える