如何在iPhone中的viewcontroller中添加tabbarcontroller
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用“选项卡栏应用程序”模板创建另一个应用程序,然后查看该应用程序与您的应用程序之间的差异。
I'd recommend creating another app using the "Tab Bar Application" template, and then look at the differences between that and your app.
在您的 AppDelegate 中:
其中 tabBarController 是一个插座,已插入您在中创建的 UITabBarController 中
界面生成器。
In your AppDelegate:
Where tabBarController is a outlet that's been plugged into the UITabBarController you made in
InterfaceBuilder.