I'm building an iPhone App which requires to be logged in all the time. Now I don't know if there is a global place to put in something like:

If not_logged_in -> go to LoginView

有帮助吗?

解决方案

You can write this if-else statement in - applicationDidFinishLaunchingWithOptions:.

if ([[NSUserDefaults standardUserDefaults] boolForKey:@"LoggedIn"])
{
    // User already Logged In.
}
else
{
    // Go to Login View.
}

In your loginViewController, after Successful Login add this line :

[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"LoggedIn"];
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top