如何在 iPhone 应用程序启动时选择要选择的视图?
我正在编写一个应用程序来检查远程服务器上的布尔值。根据收到的响应(是或否)决定在初始化时启动哪个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 appDelegate 的
applicationDidLaunch
方法中或之后,您可以将主窗口的rootViewController
设置为您要使用的 ViewController。In or after your appDelegate's
applicationDidLaunch
method, you can set your main window'srootViewController
to the ViewController you want to use.当然有。一种方法是:您可以为不同的视图制作 2 个 xib,然后:
of course there is. one method is: you can make 2 xibs for different views then: