我有一个类名 viewController,它在下面有以下代码,它工作正常。但是,当我从我的子类控制器调用 check 时,它不能按我想要的方式工作。UIAlertView
显示出来,但它无法检测到按钮索引 0 何时被触摸。任何解决方法。
-(void)check{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You Lose!"
message:@"Play Again?"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"OK", nil];
[alert show];
}
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
if (buttonIndex == 0) { // and they clicked OK.
ViewController*myNewVC = [[ViewController alloc] init];
[self presentModalViewController:myNewVC animated:NO];
}
}