如何使 UIAlertView 不根据 ButtonIndex 关闭

发布于 2024-12-11 03:18:46 字数 189 浏览 0 评论 0原文

你好: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一向肩并 2024-12-18 03:18:46

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

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

在它的主体中,您可以检查buttonIndex是否为1并采取相应的行动

In this case you can implement its delegate:

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

and in its body you can check if buttonIndex is one or not and act accordingly

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文