I am wondering how where I can keep both password and session token at once?
According to this tutorial:
http://yuttana.me/2013/08/05/ios-tips-using-keychain-to-store-password-access-token-on-ios-app/
I can keep password this way using key kSecValueData:
[keychainWrapper setObject:@"1a7b0b0bd363c9beef7f9214c3a67c5c" forKey:(__bridge id)(kSecValueData)];
But what key I should use to store session token?