TabBar 控制器 iPhone

发布于 2024-09-19 10:06:39 字数 325 浏览 4 评论 0原文

你能解释一下如何向 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 技术交流群。

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

发布评论

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

评论(1

厌味 2024-09-26 10:06:39

如果这种情况发生在您的应用程序委托中,那么您应该有一个“Window”并将“rootController.view”添加到“window.view”。像这样的东西:

[window addSubview:summonView.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:

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