I use UITabBarController for iOS app. it has 3 tabs. For example tab1 (current tab), tab2 and tab3. I want put a small red badge on tab3 icon when click a button on tab1. Is there any way to add it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
UITabBarItems have a badgeValue property. You can set this when your delegate method gets fired.
You can get the TabBarItem #3 from the tabBarController with
|
|||