如何在appdelegate中加载视图?
我正在检查应用程序委托中的互联网连接可用性。但是,我需要加载视图或向应用程序添加子视图,而不是在没有互联网连接的情况下显示警报视图。我还需要删除可用的互联网连接中的该视图。
[window addSubView:errorconncting.view];
[errorconnecting removeFromsuperView];
这个不行。
谢谢。
I am checking internet connection availability in application delegate. But instead of displaying alert view for no internet connection, i need to load a view or addsubview to the application. Also i need to remove that view in internet connection available.
[window addSubView:errorconncting.view];
[errorconnecting removeFromsuperView];
This one is not working.
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能已将主视图连接到 Interface Builder 中的窗口,这将覆盖您自己的设置。最好的方法是在 NIB 中有一个默认视图,然后根据互联网连接将适当的视图添加到该基本/默认视图中。
It is possible that you connected the main view to the window in the Interface Builder, this will override your own settings. The best approach would be to have a default view in the NIB, then depending on the internet connection add the appropriate view to this base / default view.
如果没有互联网连接
If Internet connection is not there
而不是
它应该是
您可以向 window 添加尽可能多的子视图。因此,每当您必须显示新视图时,首先尝试将其作为子视图添加到窗口中,看看它是否有效。
instead of
it should be
You can add as many subviews to window. So whenever you have to show a new view, first try adding it in window as subview, see if it works.