xamarin.ios - How to get to an MvxViewController from a regular UiViewController? Is it possible? -
i new mvvmcross, samples find seems rely on
var start = mvx.resolve<imvxappstart>(); start.start();
to instantiate mvxviewcontrollers.
but app starts non-mvxviewcontroller, , don't want turn start viewcontroller mvxviewcontroller.
i instantiate mvxviewcontroller , push navigation stack, this:
var vc = mvx.resolve<somemvxviewcontroller>(); navigationcontroller.pushviewcontroller(vc, true);
is possible?
wiki
Comments
Post a Comment