Using MonoTouch I add a LogonViewController to the Window and show it on FinishedLaunching:
window = new UIWindow(UIScreen.MainScreen.Bounds);
window.RootViewController = new LogonViewController();
window.MakeKeyAndVisible();
In the LogonViewController, how do I add the main VC, called MainViewContoller and remove the LogonViewController? (This is the action that will happen once the user is logged in.)