Swift设置UITabBarItem的徽章值

时间:2015-04-18 16:35:16

标签: swift swift2 uitabbarcontroller uitabbaritem

我正在尝试添加徽章警告标签,如附带的屏幕截图中的标签。

enter image description here

我试图搜索标题,标记uitabbar项目,但我被卡住了。

任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:65)

Xcode 7.2.1 Swift 2.1.1

您只需为所需的UITabBarItem设置badgeValue,如下所示:

tabBarController?.tabBar.items?[4].badgeValue = "1"   // this will add "1" badge to your fifth tab bar item


// or like this to apply it to your first tab
tabBarController?.tabBar.items?.first?.badgeValue = "1st"

// or to apply to your second tab
tabBarController?.tabBar.items?[1].badgeValue = "2nd"

// to apply it to your last tab
tabBarController?.tabBar.items?.last?.badgeValue = "Last"

要从UITabBarItem中删除徽章,只需为其添加nil值

tabBarController?.tabBar.items?.first?.badgeValue = nil