Hi Huys,
The senario is, I a TabbarViewController, which contains Tab {A, B, C, D}. After User clicked Tab:B, instead Tab {A, B, C, D}, I want show {E, F, G} as the Tabbar item on the Tabbar.
Is there any way to switch Tabbar Item Set? I'm a newbie to iOS. Thanks!
EDIT: I've also tried to modify self.tabbarcontroller.tabbar.items, but I got a runtime exception, said that tabbar.items cannot be modified directly.
\EDIT
Found a way to solve this scenario: Use a navigation controller, and push a TabbarView which uses {A, B, C, D}, and if B is touched, push another TabbarView to the navigation controller
@joelm thanks for your help!
Greeting, Stellit