阻止用户更改选项卡,直到应用程序完全加载

发布于 2024-09-01 23:00:39 字数 133 浏览 2 评论 0原文

在我的应用程序中,我必须线程化 xml 的加载,以便应用程序加载并且不会被操作系统踢出,但这也意味着当应用程序加载时,用户选择仍在加载的选项卡之一,它崩溃。

有什么方法可以阻止他们更改选项卡,直到应用程序完全加载?

谢谢

im my app i have had to thread the loading of xml so the app loads and does not get kicked out by the os , but that also means that when the app loads and , the user selects one of the tabs that is still loading, it crashes.

is there any way i can stop them changing tabs till the app is fully loaded?

Thanks

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

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

发布评论

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

评论(2

嘦怹 2024-09-08 23:00:39

UITabBarController 提供 委托 方法称为 tabBarController:shouldSelectViewController:。覆盖它并为您不想加载的任何视图控制器返回 NO

UITabBarController provides a delegate method called tabBarController:shouldSelectViewController:. Override that and return NO for any view controller you don't want to load.

咽泪装欢 2024-09-08 23:00:39

您需要实现 UITabBarControllerDelegate。参考在这里 UITabBarControllerDelegate 协议参考

You need to implement UITabBarControllerDelegate. Reference is here UITabBarControllerDelegate Protocol Reference

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