ios - Set badge for tab bar item embedded in navigation controller -


i trying set badge value tab bar item embedded in navigation controller tabbarcontroller.m (tab bar controller --> navigation bar --> view controller), used code it's not working:

[[self.tabbarcontroller.tabbar.items objectatindex:0] setbadgevalue:eventcountstr]; 

use code change badge current tab

[[self navigationcontroller] tabbaritem].badgevalue = @"badgevalue"; 

if need change value tab

[[super.tabbarcontroller.viewcontrollers objectatindex:2] tabbaritem].badgevalue = @"1"; 

if need remove badge use badgevalue nil.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -