Overlay tabbar with a view

前端 未结 3 670
情书的邮戳
情书的邮戳 2021-01-24 00:21

I have a UIViewController inside Tab bar. For one VC in Tab bar I allow the interface to rotate upon device rotation. The challenge is, that I want to hide the Tab

3条回答
  •  鱼传尺愫
    2021-01-24 00:59

    If you want to always hide the tab bar when a particular UIViewController is pushed, you can do:

    self.hidesBottomBarWhenPushed = YES;
    

提交回复
热议问题