I have a UITabbarController with UItableViewController for each tabs, when I navigate down in a tableview Tab bar still there, but I want to make detail view with no tab bar (just like photos app when you click on a photo tab bar disappear and replace with tool bar). How can I implement this kind of behavior ?
I have a UITabbarController with UItableViewController for each tabs, when I navigate down in
Share
Have you tried
self.hidesBottomBarWhenPushed = YES;where self is yourDetailViewController? Try it before pushing theDetailViewController.