删除 UITabBarItem
如何从 UITabBar
中删除 UITabBarItem
?
我还没有尝试过任何东西,因为我没有从 Google 搜索或 UITabBar
、UITabBarController
或 UITabBarItem
的文档中找到任何内容。
提前致谢! :)
How can I remove a UITabBarItem
from a UITabBar
?
I haven't tried anything, because I haven't found anything from Google searches or the documentation for UITabBar
, UITabBarController
, or UITabBarItem
.
Thanks in advance! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
UITabBar 有一个 NSArray 项目集合。由于 items 属性是 NSArray 而不是 NSMutableArray,您必须从现有的没有要删除的对象的 NSArray 构造一个新的 NSArray,然后将 items 属性设置为新数组。
UITabBar has an NSArray collection of items. Since the items property is an NSArray and not an NSMutableArray, you'd have to construct a new NSArray from the existing one devoid of the object you want to remove, then set the items property to the new array.
Mike Caron 的建议将引发异常 如果您打算修改属于控制器的 tabBar。
在这种情况下,
self.tabBarItem=nil
将删除它。Mike Caron's advice will throw an exception if you intend to modify a tabBar that belongs to a controller.
In this case
self.tabBarItem=nil
will remove it.注意:这似乎在 iOS 11 中不起作用。在 iOS 10 中它仍然很好。
在我看来,这是一个相当糟糕的答案,部分原因是它颠覆了人机界面准则,但尽管如此,它似乎仍然可以正常工作:
这将它干净地放置在旧选项卡栏的顶部,并且保留了其功能。
NOTE: this appears to not work in iOS 11. It was still good in iOS 10.
This is a moderately horrible answer, in my opinion, in part because it's subverting the human interface guidelines, but all the same it seems to work cleanly:
That layers it cleanly on top of the old tabbar, and it maintains its functionality.