Referring above image: 1. The issue is to set Number inside circle of Tasks image in "Tasks tab". 2. Is it possible to set number i.e UILabel at given location inside tab bar item?
Thank You.
Updated:
This is what i wanted and got using badge value:
[[[[[self tabBarController] tabBar] items] objectAtIndex:1] setBadgeValue:10 ]];
To get badge value to application value:
[UIApplication sharedApplication].applicationIconBadgeNumber = 10;