In my application I have a Tabbar Controller which contains 6 views. The second view is a Navigation Controller which contains 2 other views. Now I want these 2 views to not show the tabbar form the Tabbar Controller which contains all these views. Is this possible with storyboard or in my whole view structure incorrect?

EDIT It is basically the same when you press on a user in the app WhatsApp from the Chats tab and you go to the chatview for that user.

有帮助吗?

解决方案

[segue.destinationViewController setHidesBottomBarWhenPushed:YES];

did the trick.

So when a user clicks on tab 2 a tableview shows up. Then when clicking one a cell a new view shows up without the tabbar.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top