如何使UIAlertView不会被取消,具体取决于buttonIndex

时间:2011-10-22 13:28:41

标签: objective-c ios cocoa-touch uialertview

嗨:D我正在创建一个应用程序,我有一个UIAlertView,当dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated的buttonIndex为1时我不想忽略,但如果它不是1则应该忽略。我怎样才能实现它?谢谢:D

1 个答案:

答案 0 :(得分:2)

在这种情况下,您可以实现其委托:

- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex

并且在其正文中,您可以检查buttonIndex是否为1,并相应地采取行动