UITabBarController - 超过 20 次浏览
我在我的应用程序上使用标签栏 (UITabBarController),我希望有 20 多个不同的视图可供选择。
如果超过 5 个,则会出现“更多”菜单。 我可以从“更多”菜单访问我的任何视图,但在使用“配置”(编辑)导航栏自定义 TabBar 时遇到问题。 我只能看到 20 个第一个视图图标,并且无法向任何方向滚动视图。 数字 21 或更高的图标在“配置”(编辑)导航栏中不可用
有没有办法向上和向下(或向左和向右)滚动以便能够使用我的所有视图图标自定义 TabBar? 是否有其他方法可以自定义“配置”(编辑)导航栏以访问所有视图图标?
I am using a tab bar (UITabBarController) on my app and I wish to have more than 20 different views to choose from.
If there are more than 5, "More" menu appears. I can access any of my views from "More" menu but I have problems with customizing my TabBar with "Configure" (Edit) navigation bar. I can see only 20 first view icons and I can't scroll the view any direction. Icon with numbers 21 or higher are unavailable in "Configure" (Edit) navigation bar
Is there a way to scroll up and down (or left and right) to be able to customize TabBar with all of my view icons? Is there the other way to customize "Configure" (Edit) navigation bar to get access to all view icons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来除了创建自己的 UITabBarController 之外没有其他解决方案:(。
Looks like there is no solution for this :( except creating your own UITabBarController.
这是 Apple 提供的控制器的限制,但您可以按如下方式解决此问题:
捕获编辑按钮的操作并将其替换为您自己的操作,该操作旨在显示一个与排序操作不同的自定义屏幕。
当我有需要时,我在我的应用程序中这样做了。
This is a limitation of the controller provided by Apple, but you can work around this problem as follows:
Catches the action of the edit button and replace it with your own action that aims to display a custom screen that plays differently the sort action.
I have done this way in my applications, when I had the need.