TabBar 控制器 iPhone
你能解释一下如何向 UIViewController 添加选项卡栏控制器吗?我想我在执行此操作时遇到问题。请帮助我。这就是我到目前为止所做的事情。我从 IB 添加了选项卡栏控制器并创建了一个IBOutlet 并从文件所有者到我添加的选项卡栏控制器建立了连接..当我运行应用程序时,它显示白屏..
- (void)viewDidLoad {
[self.view addSubview:rootController.view];
[super viewDidLoad];
}
rootController 的类型为 UITabBarController
Can you please explain me how to add a tab bar controller to the UIViewController..I think I have problem doing this..please help me..this is what I did so far..I added tab bar controller from IB and created a IBOutlet and made connections from file's owner to the Tab bar controller I added..when I run the app it displays a white screen..
- (void)viewDidLoad {
[self.view addSubview:rootController.view];
[super viewDidLoad];
}
rootController is of type UITabBarController
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这种情况发生在您的应用程序委托中,那么您应该有一个“Window”并将“rootController.view”添加到“window.view”。像这样的东西:
If this is happening in your application delegate then you should have a "Window" and add the "rootController.view" to "window.view". Something like this: