UINavigationController 弹出时 UIAlert 视觉变慢

发布于 2024-12-07 11:45:17 字数 303 浏览 0 评论 0原文

在 UINavigationController 从堆栈中弹出视图控制器之前,我有一个 UIAlert 出现。这会导致非常明显的减速;当前视图变暗、暂停、滑动到新视图,最后出现 UIAlert。

这种减速是完全不受欢迎的。看起来很糟糕。以编程方式,我需要在视图控制器转换之前触发 UIAlert(尽管我不需要等待用户与 UIAlert 的交互继续),因为那是数据所在的位置。

那么,我是否(a)使数据可供视图控制器弹出后访问并触发 UIAlert,(b)向 UIAlert 添加某种时间或函数延迟,以便它在视图控制器后触发-pop,或者(c)一些其他好的建议?

I have a UIAlert appear just before the UINavigationController pops a view controller off the stack. This causes a very visible slow-down; the current view darkens, pauses, slides to the new view, and then at last the UIAlert appears.

The slow-down is entirely undesirable; it looks terrible. Programmatically I need to fire the UIAlert before the view controller transition (although I do not need to wait for user interaction w/the UIAlert to continue) because that's where the data is.

So do I (a) make the data accessible to after-the-view-controller-pop and fire UIAlert then, (b) add some sort of time or function delay to the UIAlert so that it fires after-the-view-controller-pop, or (c) some otehr good suggestion?

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-12-14 11:45:17

使用performSelector:withObject:afterDelay:

[self performSelector:@selector(methodThatShowsAlert) withObject:nil afterDelay:0.5];

Use performSelector:withObject:afterDelay:

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