this is really throwing me for a loop. I installed Xamarin for Visual Studio, created an empty project and connected to my Mac. I simulate an iPhone and get this error
Foundation.MonoTouchException: Objective-C exception thrown. Name: NSInternalInconsistencyException Reason: Application windows are expected to have a root view controller at the end of application launch
Which is being caused by the call to UIApplication.Main in the Main.cs
class
using UIKit;
namespace testapp
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}
I have absolutely nowhere to think to look - has anyone run into this before?