如何使UIAlertView不取消取决于buttonIndex

嗨:D我正在做一个应用程序,我有一个UIAlertView,我不想解雇dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated的buttonIndex是1,但如果它不是1它应该解雇。我怎样才能实现它?谢谢:d如何使UIAlertView不取消取决于buttonIndex

回答:

在这种情况下,你可以实现它的委托:

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

,并在它的身上你可以检查是否buttonIndex是一个或没有采取相应的行动

以上是 如何使UIAlertView不取消取决于buttonIndex 的全部内容, 来源链接: utcz.com/qa/257489.html

回到顶部