如何在 iPhone 应用程序启动时选择要选择的视图?

发布于 2024-12-05 14:06:45 字数 85 浏览 0 评论 0原文

我正在编写一个应用程序来检查远程服务器上的布尔值。根据收到的响应(是或否)决定在初始化时启动哪个 UIView。无论如何都要决定选择哪个 UIView 吗?

I am writing an application that checks a boolean on a remote server. On the basis of received response - YES or NO - decides which UIView to launch at initialise time. Is the anyway to decide which UIView to pick?

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

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

发布评论

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

评论(2

白首有我共你 2024-12-12 14:06:45

在 appDelegate 的 applicationDidLaunch 方法中或之后,您可以将主窗口的 rootViewController 设置为您要使用的 ViewController。

In or after your appDelegate's applicationDidLaunch method, you can set your main window's rootViewController to the ViewController you want to use.

一袭水袖舞倾城 2024-12-12 14:06:45

当然有。一种方法是:您可以为不同的视图制作 2 个 xib,然后:

UIView *view_ = nil;

if(serverResponse)
{
NSArray *views= [[NSBundle mainBundle] loadNibNamed:@"ViewTypeOne1"
                                                  owner:self
                                                options:nil];

view_ = [ nibViews objectAtIndex: 1];

}
else
{
NSArray *views= [[NSBundle mainBundle] loadNibNamed:@"ViewTypeOne2"
                                                  owner:self
                                                options:nil];

view_ = [ nibViews objectAtIndex: 1];
}

//if it is to be set for a controller
controller.view = view_;

of course there is. one method is: you can make 2 xibs for different views then:

UIView *view_ = nil;

if(serverResponse)
{
NSArray *views= [[NSBundle mainBundle] loadNibNamed:@"ViewTypeOne1"
                                                  owner:self
                                                options:nil];

view_ = [ nibViews objectAtIndex: 1];

}
else
{
NSArray *views= [[NSBundle mainBundle] loadNibNamed:@"ViewTypeOne2"
                                                  owner:self
                                                options:nil];

view_ = [ nibViews objectAtIndex: 1];
}

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