有一个带有 TabBar 的视图,但没有显示任何选项卡视图?
是否有可能拥有一个带有 2 个选项卡栏项目的 UITabBar,但显示的视图不是选项卡栏的一部分?
例如,我有橙色视图,标签栏位于底部,标签栏上有蓝色视图按钮和绿色视图按钮,查看绿色或蓝色视图的唯一方法是用户与标签栏的交互。否则它将始终显示橙色视图。
抱歉,如果这令人困惑,我将如何在代码中实现它?
Is it possible to have a UITabBar with lets say 2 tab bar items, but the view being shown not one that is part of the tab bar?
for instance I have orange view with the tab bar at the bottom, on the tab bar there is blue view button and green view button and the only way to see the green or blue views would be a user interaction to the tab bar. otherwise it will always display orange view.
Sorry if this is confusing, and how would I implement this in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这几乎肯定会让您的应用程序被拒绝,原因是“这可能会导致客户困惑”。
UITabBarController 旨在显示一个应用程序的不同部分,而不是影响单个视图。为此,您需要使用 UIToolbar。
This will almost certainly get your app rejected with the reason "this might lead to customer confusion".
UITabBarController is meant to show different sections of one app, not to affect a single view. Instead for this you want to use a UIToolbar.