I'm working on an MVVMCross based app and need to use a custom UINavigationController
but I'm struggling to see how I can do this as I can't see the point at which the navigation controller is created.
Can anyone give any guidance on how a custom UINavigationController
can be used within MVVMCross
You would do that in your own Presenter by overriding
CreateNavigationController
:Modify as needed.
base.CreateNavigationController
just creates an instance ofUINavigationController
.