I want to present an MCBrowserViewController (a "native" iOS 7 View Controller) in a Xamarin.iOS app using MvvmCross. It appears that there are two ways to accomplish this (as detailed in Integrating third party controller with MVVMCross on MonoTouch):
- create a Custom Presenter
- inherit from
MCBrowserViewControllerto provide anEventSource-ViewController, and inherit from theEventSource-ViewController to add the Mvx BindingContext
I have tried 1 and 2 above (I suspect that 2 is the more correct approach?), but I am not able to actually present the MCBrowserViewController. I have watched a range of the "N+1 Days of MvvmCross" tutorials but I can't seem to find a tutorial specifically on this.
Any help will be greatly appreciated! I can post the code I wrote in implementing approach 2 above if it will help.