标签栏限制?
有什么方法可以将 iPhone 标签栏中的项目数量增加到超过 5 个吗?我知道它可以创建一个“更多...”选项卡,但再多一个选项卡似乎就太多了。
我有一个需要六个的应用程序(或者我将不得不做一些深入的冥想来摆脱一个)。
Is there any way to increase the number of items in the iphone tab bar beyond five? I know that it can create a "More..." tab, but it seems excessive for just one more tab.
I have an app which needs six (Alternatively I will have to do some deep meditation to get rid of one).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。这是 UITabBarController 中的硬编码限制 类。 视图控制器编程指南多次提到一次只能显示 5 个选项卡。
如果您确实想要此功能,则必须自己创建 UITabBarController 的替代品。
No. This is a hard coded limit in the UITabBarController class. The View Controller Programming Guide makes several references to only being able to display 5 tabs at a time.
If you really want this functionality, you'll have to create a replacement to UITabBarController yourself.