This is probably a stupid question, but as I haven't found an answer anywhere else I will ask it here.
My question is: How can I change which view controller is being viewed. In my case I want the user to open the app, and if the user hasn't already filled out the setup form the app will change from the home page to the setup page.
public override void ViewDidLoad()
{
base.ViewDidLoad();
//Initial setup check
var window = new UIWindow(UIScreen.MainScreen.Bounds);
dataBase.SetBool(false, "setUpComplete");
if (dataBase.BoolForKey("setUpComplete") == false)
{
}
else
{
}
}
Thanks to anyone who decides to answer this!