I'm really new wit iOS keychain and stumbled upon this framework called UICKeyChainStore here. I also saw a tutorial using the above mentioned framework on sharing your keychain across several apps here.
In the framework site the developer mentions about saving to the keychain with this syntax:
[UICKeyChainStore setString:@"kishikawakatsumi" forKey:@"username" service:@"com.kishikawakatsumi"];
[UICKeyChainStore setString:@"password1234" forKey:@"password" service:@"com.kishikawakatsumi"];
Does that mean it stores the username and password separately? So how do i retrieve the username and password of the same person? I am clueless to GitHub environment. Tried looking for a forum on that particular framework in GitHub but couldn't find any. Hoping stackoverflow could shed some light on this matter...
Thanx in advance...