阻止用户更改选项卡,直到应用程序完全加载
在我的应用程序中,我必须线程化 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UITabBarController
提供 委托 方法称为tabBarController:shouldSelectViewController:
。覆盖它并为您不想加载的任何视图控制器返回NO
。UITabBarController
provides a delegate method calledtabBarController:shouldSelectViewController:
. Override that and returnNO
for any view controller you don't want to load.您需要实现 UITabBarControllerDelegate。参考在这里 UITabBarControllerDelegate 协议参考
You need to implement UITabBarControllerDelegate. Reference is here UITabBarControllerDelegate Protocol Reference