TabBar in one view leading to a second view with another set of tabbar

时光毁灭记忆、已成空白 提交于 2019-12-25 06:45:10

问题


I need some help or even a link to direct me to the help will be much appreciated.

I have a main tabBar view now which shows a list of patients in a table as the tabBar default. On clicking of the individual rows of patients in the table it will give me the information of the patients in another view. However, in this patientInfo view, I want to have a new set of tabBar which allows me to show different tabs other that patientInfo.

Is this possible? A tabBarController leading to another tabBarController? I tried but the old tag bars doesnt disappear but instead adds on it, leading to 2 tabBars in one view. I dun wan that =(

Please help me..


回答1:


Sounds like you need to put your tab bar controller inside a navigation controller, and the table view controller inside that tab bar controller, when a row is pressed, you'd push another tab bar controller to the navigation controller.

It'd look like this:

Navigation Controller
 |
 ⎬- First Tab Bar Controller
 |  ⎬- Table View Controller
 |  ⎬- ...
 |  ⎬- View Controller
 |
 ⎬- Pushed Tab Bar Controller (pushed when a row is selected)
 |  ⎬- More View Controllers

Keep in mind that pushing a tab bar controller when there's another in place can be confusing for the user, as they might not realize or expect that the tabs change too.

To make it clear, I think there's a property on the tab bar controllers that, if on, animates a slide out of the tab bar when the tab bar controller will slide out, and animates a slide in of the tab bar when the controller slides in. You could use this so the user notices that the tab bar changed.



来源:https://stackoverflow.com/questions/6354005/tabbar-in-one-view-leading-to-a-second-view-with-another-set-of-tabbar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!