嗨:D我正在制作一个应用程序,其中有一个UIAlertView,当dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated
的buttonIndex为1时,我不想将其关闭,但是如果它不是1,则应将其关闭。我该如何实现?感谢:D
最佳答案
在这种情况下,您可以实现其委托:
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
您可以在其主体中检查buttonIndex是否为1并采取相应措施
关于objective-c - 如何使UIAlertView不根据buttonIndex关闭,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7859887/