문제

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