如何确定 UITabBarItem 位置?
如何确定 UITabBarItem 是否具有标题“Hello”并且位于位置 0?
How can I determine if a UITabBarItem has the title "Hello" and is in position 0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我宁愿在
tabBar
items 数组上使用indexOfObject
获取项目的索引:I'd rather get the index of the item using
indexOfObject
on thetabBar
items array:使用 UITabBar 的
items
属性,例如:Use the
items
property of the UITabBar, like:uitabbaritem 继承自 uibaritem,它定义了 tag 和 title 属性。
uitabbaritem inherits from uibaritem which defines the tag and title properties.