当新的推送通知到达时,如何更新 uitabbaritem 的徽章编号

How do I update the badge number for uitabbaritem when a new push notification arrives

如何在新的推送通知到达时更新特定 UITabBarItem 的徽章? 例如 Instagram 中的 activity 选项卡

您应该使用以下代码:

[[[[[self tabBarController] tabBar] items] 
               objectAtIndex:tabIndex] setBadgeValue:badgeValueString];
NSString *badgeValue = [NSString stringWithFormat:@"%lu", (long)countUnreadMessages];

[[[[self viewControllers] objectAtIndex:indexOfTabbarItem] tabBarItem] setBadgeValue:([badgeValue isEqualToString:@"0"]) ? nil : badgeValue];