I've been searching and searching but can't seem to find a solution that works for what I'm trying to do, and I'm almost at the point where I have to ask if it is even possible.
I'm using Xamarin Studio to develop an iOS app. I have a few different screens set up as UIViewControllers and they are working well. The crux of the app, however, is a game and I want to use Monogame as I've used it before and enjoyed working with it.
Basically, I have to switch from a UIViewController to the Game class. I am able to do this by simply creating a new Game object and calling Run(), but I can not figure out how to get out of the Game when I need to and return control back to the UIViewController.
Has anybody done this in an app? I've tried everything I can possibly think of, but nothing seems to do the trick. Is it even possible? Or will I need to redo it so that Monogame handles everything, even all of the other stuff in the app that isn't part of the actual game?
Thanks!