user1256477
user1256477

Reputation: 11201

uitableView, new view with tabs

I have a UITableView I have tabs too:

enter image description here

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

Answers (1)

Rajneesh071
Rajneesh071

Reputation: 31091

You can do this using this code... when you are selecting cell

[self.tabBarController setSelectedIndex:index];

Upvotes: 2

Related Questions