如何破坏我的应用?
如果用户在此代码中按下关闭
,我想要崩溃应用程序 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");
}
}
答案 0 :(得分:4)
如何在代码附近做零除!
答案 1 :(得分:3)
使用 -
[[NSThread mainThread] exit];
答案 2 :(得分:2)
您不应在iOS上添加关闭/退出应用的按钮。