如何确定 UITabBarItem 位置?

发布于 2024-09-13 23:12:51 字数 47 浏览 5 评论 0原文

如何确定 UITabBarItem 是否具有标题“Hello”并且位于位置 0?

How can I determine if a UITabBarItem has the title "Hello" and is in position 0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

断爱 2024-09-20 23:12:51

我宁愿在 tabBar items 数组上使用 indexOfObject 获取项目的索引:

NSUInteger index = [tabBar.items indexOfObject:item];

I'd rather get the index of the item using indexOfObject on the tabBar items array:

NSUInteger index = [tabBar.items indexOfObject:item];
那支青花 2024-09-20 23:12:51

使用 UITabBar 的 items 属性,例如:

if([[myTabBar items] indexOfObject:myTabBarItem] == 0)
{
  UITabBarItem* theItem = [[myTabBar items] objectAtIndex:0];

  if([theItem.title isEqualToString:@"Hello"])
  {
    // it's in position 0 and has title "Hello"
  }
}

Use the items property of the UITabBar, like:

if([[myTabBar items] indexOfObject:myTabBarItem] == 0)
{
  UITabBarItem* theItem = [[myTabBar items] objectAtIndex:0];

  if([theItem.title isEqualToString:@"Hello"])
  {
    // it's in position 0 and has title "Hello"
  }
}
jJeQQOZ5 2024-09-20 23:12:51

uitabbaritem 继承自 uibaritem,它定义了 tag 和 title 属性。

uitabbaritem inherits from uibaritem which defines the tag and title properties.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文