I am using MvvmCross to create a MonoTouch application. I have followed the the basic tutorial, and so far so good. The only problem is that my (initial and so far only) view is displayed with a top bar/navigation bar, which I don't want. I am able to hide the navigation bar by calling
this.NavigationController.NavigationBarHidden = true;
in the view controller's ViewDidLoad. I would prefer to not have to suppress the navigation bar, but rather that it not be there at all. The fact that it is appearing is suggesting that perhaps I am doing something wrong/inheriting from the wrong base classes?
Further details on my code:
The view controller inherits from MvxBindingTouchViewController
.
My Setup class inherits from MvxBaseTouchBindingSetup
(I will not be using TouchDialog anywhere, so am not inheriting from MvxTouchDialogBindingSetup
).
Any help would be greatly appreciated! If I need to supply more details on my code, please let me know.