我正在使用NavigationItem来驱动应用程序的导航。对于从DialogViewController继承的所有控制器,即使我执行
,也不会显示后退按钮BackButtonBarItem = news UIBarButtonItem(..)
后退按钮从不仅显示对话框,但适用于所有其他类型的控制器。我错过了什么吗?
答案 0 :(得分:4)
使用重载的DialogViewController构造函数
public DialogViewController (RootElement root, bool pushing)
如果将DVC推送到NavigationController,则bool推送参数应为true。
答案 1 :(得分:0)
使用
public YourDialog () : base (UITableViewStyle.Grouped, null, true)
而不是
public YourDialog () : base (UITableViewStyle.Grouped, null)