开发者

How to add a second UITabBar (Controller?) to a UIView in iOS

开发者 https://www.devze.com 2023-04-02 19:57 出处:网络
So I\'m working on an app that has a tab bar for the main part of the app. In the first tab you have a l开发者_StackOverflow中文版ist, and when you tab on a cell it pushed a UIViewController with some

So I'm working on an app that has a tab bar for the main part of the app. In the first tab you have a l开发者_StackOverflow中文版ist, and when you tab on a cell it pushed a UIViewController with some details.

This view controller calls (below) when it is created so it hides the tab bar for the main part of the app when it is pushed...

[self setHidesBottomBarWhenPushed:YES];

I'd like to now add another tab bar to help separate out the information in this pushed details view.

How can I do this? Thanks already! :-)


You will have to add a tabbarcontroller to your xib and either add the tabbarcontroller as subview when the detailview appears ( in viewWillAppear:animated method ) or directly push the tabbarcontroller as detailview.

0

精彩评论

暂无评论...
验证码 换一张
取 消