Here i am using the 4 tabViews, third one is chat button so here user unread messages how to show the badges
in #import "HomeTabViewController.h"
- (void)viewDidLoad {
[super viewDidLoad];
NSString *badgeVal = @"5";
[[[[self.tabBarController viewControllers] objectAtIndex:2] tabBarItem] setBadgeValue:badgeVal];
}
You need to simply set
badgeValue
property oftabBarItem
for that.Note : I have access 3rd
ViewController
usingobjectAtIndex:2
because you want to set badge for the 3rdUITabBarItem
.