タブバーのアイコンにバッジをつける
self.tabBarController?.viewControllers?.forEach {
if type(of: $0) == TagetViewController.self {
$0.tabBarItem.badgeValue = "!"
if #available(iOS 10.0, *) {
$0.tabBarItem.badgeColor = MyRedcolor
} else {
// default red color
}
}
}