当我使用PushViewController添加时,通过以下代码可以看到导航标题:
View viewp = new View();
NavigationController.PushViewController(viewp, false);
但是当我使用PresentViewControllerAsync添加导航标题时,它是隐藏的吗?
viewp.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
this.PresentViewController(viewp, true, null);
我正在使用ios13,我怎么了? 左右按钮不显示
答案 0 :(得分:1)
它们没什么问题,这是正常现象。
PushViewController 需要Root View Controller是NavigationController
,它只能在NavigationController中使用。因此,在调用need时,如下所示:
NavigationController.PushViewController(xxx)
这也是通过此方法可以看到导航栏的原因。下一页位于导航控制器下。查看定义的UINavigationController和pushViewController:animated::
这里有一些很好的讨论,以供参考。
Difference between pushViewController and showViewController
difference between presentViewController and UINavigationController?