如何在appdelegate中加载视图?

发布于 2024-11-14 13:13:02 字数 226 浏览 2 评论 0原文

我正在检查应用程序委托中的互联网连接可用性。但是,我需要加载视图或向应用程序添加子视图,而不是在没有互联网连接的情况下显示警报视图。我还需要删除可用的互联网连接中的该视图。

[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 技术交流群。

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

发布评论

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

评论(3

踏雪无痕 2024-11-21 13:13:02

您可能已将主视图连接到 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.

天涯沦落人 2024-11-21 13:13:02

如果没有互联网连接

[self.viewremoveFromSuperView];
errorconnectingClassObject errorconncting = [errorconnectingClassObject alloc]initWithNibName:@"" options:nil];
[窗口addSubView: errorconncting.view];

If Internet connection is not there

[self.view removeFromSuperView];
errorconnectingClassObject errorconncting = [errorconnectingClassObject alloc]initWithNibName:@"" options:nil];
[window addSubView: errorconncting.view];

终陌 2024-11-21 13:13:02

而不是

[errorconnecting removeFromsuperView];

它应该是

[errorconnecting.view removeFromsuperView];

您可以向 window 添加尽可能多的子视图。因此,每当您必须显示新视图时,首先尝试将其作为子视图添加到窗口中,看看它是否有效。

instead of

[errorconnecting removeFromsuperView];

it should be

[errorconnecting.view removeFromsuperView];

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.

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