如何在iPhone中的viewcontroller中添加tabbarcontroller

发布于 2024-08-22 18:25:28 字数 176 浏览 7 评论 0原文

我是 iPhone 开发新手,我已经在基于视图的应用程序中创建了我的项目,我想在我的视图中添加选项卡栏控制器。我在视图中使用界面生成器添加了 tabbarcontroller,但在视图中看不到选项卡栏。

请问我如何在视图中添加 tabbarcontrolller 。

所以请指导我。

谢谢。

I am new to iphone development, i have created my project in view based application and i want to add tabbar controller in my view. I have added tabbarcontroller using interface builder in my view and i cannot see the tabbar in my view.

Plz how can i add tabbarcontrolller in view.

So plz guide me.

thanks.

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

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

发布评论

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

评论(2

驱逐舰岛风号 2024-08-29 18:25:28

我建议使用“选项卡栏应用程序”模板创建另一个应用程序,然后查看该应用程序与您的应用程序之间的差异。

I'd recommend creating another app using the "Tab Bar Application" template, and then look at the differences between that and your app.

若沐 2024-08-29 18:25:28

在您的 AppDelegate 中:

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

    // Override point for customization after app launch    
    [window addSubview:[tabBarController view]];
    [window makeKeyAndVisible];
}

其中 tabBarController 是一个插座,已插入您在中创建的 UITabBarController 中
界面生成器。

In your AppDelegate:

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

    // Override point for customization after app launch    
    [window addSubview:[tabBarController view]];
    [window makeKeyAndVisible];
}

Where tabBarController is a outlet that's been plugged into the UITabBarController you made in
InterfaceBuilder.

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