I have two views – view1 and view2.
View1 is my default viewcontroller loaded from mainwindow.xib.
Depending on some condition checking, i want to load either View1 or View2, say if user registration is not done, load sign up screen for user, else go to default view controller.
How and where do I check this condition?
Please help.
Thanks in advance.
If you are just planning on bringing up a sign-up screen if the user registration is needed, why not stick with the default view controller, but at
-applicationDidBecomeActive:present a modal view controller for the sign up view?