UIAlertView 判断是否选择取消按钮的简单方法
我知道我以前做过这个,但我就是想不通了。
我将使用什么方法来查看是否按下了取消按钮。我不想根据按钮索引来做到这一点。有一种方法可以做到这一点,例如:
[alertView isCancelIndex:index];
有人知道吗?
I know I've done this before but I just can't figure it out again.
What is the method I would use to see if a cancel button was pressed. I don't want to do it based on the button index. There is a way to do it, something like:
[alertView isCancelIndex:index];
Anyone know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
UIAlertView 有一个取消按钮索引的
属性
The UIAlertView has a property of cancel button index
Usage
在 UIAlertView 的委托中是方法
然后:
In the delegate of UIAlertView is the method
And then: