如何显示底部栏(标签栏控制器)?
我用它来隐藏底部栏
-(BOOL) hidesBottomBarWhenPushed{
return YES;
}
现在我不想再隐藏它了。 我应该使用什么方法?
谢谢
I used this to hide the bottom bar
-(BOOL) hidesBottomBarWhenPushed{
return YES;
}
Now i'm at a point where I want to NOT to hide it anymore. What method should I use?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看 Elements 示例项目。 它们会执行您想要的操作,尤其是在 ElementViewController.m 文件中。
Take at look at Elements sample project. They do something like you want, especially in the ElementViewController.m file.
这很简单,只需使用这个:
Thats very simple, just use this:
我花了一些时间才把约翰的谜题拼凑起来。 这是我的最终结果。 在视图控制器的 .m 文件中,我添加了以下代码:
因为我使用 nib 文件,所以我必须重写 initWithNibName 方法。
It took me some time putting the puzzle of John together. So here is my final result. In the .m file of my view controller I add this code:
Because I use a nib file I had to override the initWithNibName method.
一个非常简单的方法:
A really simple way: