Reputation: 51
I have a Tab bar based application. Can I change the tabs highlighted Programatically? I mean can i navigate from one tab to the other without actually clicking on the tab icons ?
Upvotes: 0
Views: 268
Reputation: 1175
I think you might be looking for UITabBarController
's selectedIndex
and selectedViewController
properties. Take a look at the docs.
Upvotes: 1