Swift 3增量增量标签栏徽章

时间:2016-11-19 00:44:35

标签: ios swift

我收到通知后,我会尝试增加标签栏徽章。

在swift2.1中,这有效:

Current

但是有没有其他方法可以在Swift 3中使用它? if let badgeValue = tabBarController?.tabBar.items?[1].badgeValue, nextValue = Int(badgeValue)?.successor() { tabBarController?.tabBar.items?[1].badgeValue = String(nextValue) } else { tabBarController?.tabBar.items?[1].badgeValue = "1" } 不起作用

0 个答案:

没有答案