You usually want a UITabBar
to be THE navigation for your application and not show it later on one view.
But if you want to do so you should show, as Mundi said, a new UITabBarViewController
when you select your UITableViewCell
.
I don't know your exact usecase, but if you work with a UITableView
I would use a UINavigationController
to push a new View when you tap one UITableViewCell
. Then it may be better (If you have 2-3 Elements) to use a UISegmentedControl
in the UINavigationBar
. This would look like this.