小编典典

快速设置UITabBarItem的Badge值

swift

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

在此处输入图片说明

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

任何建议表示赞赏。


阅读 398

收藏
2020-07-07

共1个答案

小编典典

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
2020-07-07