我正在使用 NavigationItem 来驱动应用程序的导航。对于从 DialogViewController 继承的所有控制器,即使我显示后退按钮也不显示
BackButtonBarItem = news UIBarButtonItem(..)
后退按钮永远不会只显示对话框,而是显示所有其他类型的控制器。我错过了什么吗?
我正在使用 NavigationItem 来驱动应用程序的导航。对于从 DialogViewController 继承的所有控制器,即使我显示后退按钮也不显示
BackButtonBarItem = news UIBarButtonItem(..)
后退按钮永远不会只显示对话框,而是显示所有其他类型的控制器。我错过了什么吗?
使用重载的 DialogViewController 构造函数
public DialogViewController (RootElement root, bool pushing)
如果您的 DVC 被推送到 NavigationController,则 bool push 参数应该为 true。
利用
public YourDialog () : base (UITableViewStyle.Grouped, null, true)
代替
public YourDialog () : base (UITableViewStyle.Grouped, null)