Swift 为 UITabBarItem 设置徽章值

Swift setting Badge Value for UITabBarItem

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

我尝试搜索标题、标签 uitabbar 项目,但我卡住了。

如有任何建议,我们将不胜感激。

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