如何将“选项卡栏控制器”附加到工具栏的现有视图?
我正在将一个选项卡栏控制器
附加到带有工具栏的现有视图。
但是,我在底部获得了标签栏控制器偏移
,因此您只能看到项目的顶部。 我使用以下方法将标签栏控制器附加到视图:
(void)viewDidLoad
{
[self.view insertSubview:dashboardTabController.view atIndex:0];
}
我已附加图像。 我希望有人能提供帮助,因为我已经尝试解决这个问题几个小时了,这让我发疯。
图片可在以下位置查看: 替代文本 http://img246.imageshack.us/img246/5825/iphonesimulatorscreensn.jpg< /a>
I am attaching a Tab Bar Controller
to an existing view with a toolbar.
However, I am getting the tab bar controller offset
at the bottom, so you can just see the top of the items. I am using the following to attach the Tab Bar Controller
to the view:
(void)viewDidLoad
{
[self.view insertSubview:dashboardTabController.view atIndex:0];
}
I have attached an image. I hope someone can help as I've been trying to fix this for hours now, and it's driving me crazy.
Image is available to view at:
alt text http://img246.imageshack.us/img246/5825/iphonesimulatorscreensn.jpg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加约束以修复屏幕底部的选项卡栏
add constraint to fix your tabbar at the bottom of the screen