在FirstView中按下按钮,SecondView将显示在UIModalPresentationPageSheet
中secondVC.modalPresentationStyle=UIModalPresentationPageSheet;
SecondView看起来很好(它的上限位于状态栏旁边)#1。 然后在SecondView中,通过按下按钮,以这种方式呈现ThirdView:
thirdVC.modalPresentationStyle=UIModalPresentationFullScreen;
//I tried also commenting it, but the error occurs anyway.
在这个ThirdView中,在xib中添加了一个UINavigationBar,它部分位于状态栏(第一个问题)#2下。当从ThirdView用户进入SecondView时,它不再显示正常:此时它的上限部分位于状态栏#3下。
我如何解决它?
(这是一款iPad应用) (同样在SecondView中,在xib中添加了UINavigationBar)
编辑:截图 !#1 1
!#2 2
!#3 3