如何使 UIAlertView 不根据 ButtonIndex 关闭
你好:D 我正在制作一个应用程序,其中有一个 UIAlertView,当 dismissWithClickedButtonIndex:(NSInteger)buttonIndexAnimated:(BOOL)animated
'sbuttonIndex 为 1 时,我不想关闭它,但是如果它不是 1,它应该被驳回。我怎样才能实现它?谢谢:D
Hi :D I'm making an app where I have an UIAlertView which I don't want to dismiss when dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated
's buttonIndex is 1, but if it's not 1 it should dismiss. How can I achieve it? Thanks :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,您可以实现它的委托:
在它的主体中,您可以检查buttonIndex是否为1并采取相应的行动
In this case you can implement its delegate:
and in its body you can check if buttonIndex is one or not and act accordingly