I have MonoTouch controller, where I launch my MonoGame game. So I'm leaving my UI and entering the game like so:
Game game = new Game();
game.Run();
I'm having problem with ending the game and going back to my XCode UI in MonoTouch Controller.
I've tried
this.Exit();
and
this.Dispose();
But none of them seem to do the trick. Does anyone know how I can abort the game, but still stay in MonoTouch world?
Thanks.