Reputation: 11201
I have a UITableView I have tabs too:
When I click a cell, it opens a new viewControler, but I cant set the tabs, how can i do this?
Thank you in advace!
Upvotes: 1
Views: 75
Reputation: 31091
You can do this using this code... when you are selecting cell
[self.tabBarController setSelectedIndex:index];
Upvotes: 2