Hi All,
My previous post may have been a little confusing (I'm new to iOS dev).
I have to sets of files (*.m, *.h and *.xib).
One is the login page, and upon successful validation I want to change the view to the landing page view.
Inside the validation method I have if else statement (greatly simplified for this example);
Code:
if (txtURL.text.length == 0 ) {
[valInput show];
} else {
// CODE TO LOAD NEW VIEW
}
What is the code that I need to write to make it load an alternative view?
Cheers
Carl
[::TILL THE END::]