我很难解决这个问题。
我的MainWindow.xib
有一个NavigationController
,其 View 是从另一个xib
继承的。
现在,我从主 View 中推送了一个DialogViewController
,但是我看不到第二个 View 的导航栏上的后退按钮。
从DialogViewController
推送时,我需要为UIViewController
设置什么特定的东西。
感谢致敬
阿比舍克
最佳答案
DialogViewController的构造函数具有一个称为push的参数,您应将其设置为true:
new DialogViewController(rootElement, true); // true will show the back button
关于c# - MonoTouch.Dialog:NavigationBar中的后一项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8560435/