我看到iPhone中的某些应用程序显示一个红色圆圈,其中包含来自应用程序的通知数量,该怎么做?
答案 0 :(得分:21)
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:99]
零值隐藏徽章。
答案 1 :(得分:2)
它被称为徽章,主要用于icons
,tabbaritems
。
您可以将其设置为
UITabBarItem *featured = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFeatured tag:0];
featured.badgeValue = @"1";