如果显示 UIAlertView,iOS 上是否有通知?

发布于 2024-12-08 20:59:55 字数 154 浏览 0 评论 0原文

想知道如果弹出 UIAlertView 是否有可用通知? 背景:我的应用程序在一段时间不活动后要求用户输入 PIN,但如果屏幕上出现警报,我想阻止它。 我不想检查我的代码并查找所有警报并禁用 PIN 检查器,相反,通知会很棒。 NSNotification 有希望吗?

Wondering if there is a notification available if a UIAlertView pops up?
Background: my app asks the user for a PIN after a period of inactivity but I would like to prevent it if an alert is on screen.
I don't want to go through my code and find all alerts and disable the PIN checker, instead a notification would be awesome. Any hope with NSNotification?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

温柔嚣张 2024-12-15 20:59:55

刚刚找到答案。它隐藏在这里:

当我显示 UIAlertView 时我可以收到消息

如果您监听“UIWindowDidBecomeVisibleNotification”通知,它也会触发您自己的警报,而不仅仅是系统警报。
但是,对于您自己的警报,应用程序不会放弃激活。

Just found the answer. It is hidden in here:

Can I get message when I show UIAlertView

If you listen to the "UIWindowDidBecomeVisibleNotification" notification, it will also fire for your own alerts, not only for system alerts.
For your own alerts, the application does not resign activiation however.

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