UITabBar notification icon

I cannot find a link to add a “notification” to the icon, preferably in a UITabBar, for example, an attached image, number 8.

I suppose I don’t need to manually create ALL the numbers inside the circle or create it every time I need and update the image manually using some of my icons?

thank,

g.

alt text

+3
source share
3 answers

Check the badgeValueproperty UITabBarItem .

+17
source

Use this:

self.newsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:1];
self.friendsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:2];
+2
source
 UITabBarItem *item = [self.tabBarController.tabBar.items objectAtIndex:0];  
 item.badgeValue = @"8";
+2
source

Source: https://habr.com/ru/post/1732816/


All Articles