只要一句话就能使用哦
self.tabBarItem.badgeValue = "\(num)"
* num=0时会显示一个带0的红点 这时候需要添加一个判断
if num > 0 {
}else{
self.tabBarItem.badgeValue = nil
}