Is it possible that I can save password for some website in Keychain. Like if you open Gmail in safari iOS and select remember me, it logs in automatically.
any workaround?
thank you.
al
You can use the GenericKeychain Apple sample app with the changes I outline in the answer to This question.
You can simply use NSURLCredential
, it will save both username and password in the keychain.
See my detailed answered on https://stackoverflow.com/a/17997943/249869.