Bir iPhone app Giriş / Çıkış

1 Cevap php

I would like to know about managing user's login and logout on IPhone native apps. For example, every time my app is running, the user must be logged in. The information the app serves and the list of users it's on a website running php+mysql. What's the "standard" procedure for this? Is there any library for handling user's login on a remote site?

Ne çözümleri kullandınız? kurabiye? php oturumlar?

Yararlı bir web sitesi için herhangi bir yardım ya da bağlantı çok takdir edilecektir.

1 Cevap

Şahsen ben, bir kez giriş bilgi girerken sunucu kimlik doğrulaması için kullanıcı istekleri hiç bu bilgileri kaydedilmiş daha sonra kullanmak bir tercih dosyasında depolamak için kullanıcı olsun - sizin NSURLConnection kullanarak o zaman gibi bir şey kullanabilirsiniz eğer:

-(void)connection:(NSURLConnection *)connection
didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge{

if ([challenge previousFailureCount] == 0) {
    NSURLCredential *newCredential;
    newCredential=[NSURLCredential credentialWithUser:[UserManager getUsername]
                                             password:[UserManager getPassword]
                                          persistence:NSURLCredentialPersistenceNone];
    [[challenge sender] useCredential:newCredential
           forAuthenticationChallenge:challenge];

} else {

    [[challenge sender] cancelAuthenticationChallenge:challenge];
    // inform the user that the user name and password
    // in the preferences are incorrect
}
}

burada [UserManager getUsername] ve [UserManager getPassword] tercih dosyaya gelen kullanıcı adı ve şifre yük olacak bir sınıfta sınıf yöntemleri