我正在使用 NavigationController 来显示从 MvxViewController 继承的视图。我的 NavigationController 是隐藏的。
如果我尝试在 iOS 7 上使用手势返回
public override void ViewDidLoad()
{
...
this.NavigationController.InteractivePopGestureRecognizer.Enabled = true;
...
}
我在 InteractivePopGestureRecognizer 上有一个 NullPointer 异常
你调用的对象是空的
如果没有显示导航控制器,我怎么能模拟回来?