Keep TabBar when moving to another view controller

后端 未结 4 995
伪装坚强ぢ
伪装坚强ぢ 2020-12-18 07:29

I have a storyboard like this

-> NavigationController -> LoginView -> TabBarController -> VC1 -> VC2

I didn\'t manage to make a \"move\" from VC1 to VC2 keep

4条回答
  •  无人及你
    2020-12-18 08:01

    Your view hierarchy should not look like this if you want to keep the tabBar.

    -> NavigationController -> TabBarController -> VC1 -> VC2

    You should change it to -> TabBarController -> NavigationController -> VC1 -> VC2

提交回复
热议问题