0

How can i store and restore the password of my application to and from the keychain utilities in ipad?

Vijay
  • 420
  • 6
  • 18
  • possible duplicate of [Saving Email/Password to Keychain in iOS](http://stackoverflow.com/questions/5247912/saving-email-password-to-keychain-in-ios) – Jesse Beder Nov 21 '11 at 06:47

2 Answers2

1

Basically you need to talk to the Security framework to make things with the keychain. However, this framework is still in C and not very convenient to use. That is why I like using the objective-C wrapper EMKeychain http://extendmac.com/EMKeychain/ .

GorillaPatch
  • 5,007
  • 1
  • 39
  • 56
0

I found one third party library which helps us to store and retrive the passwords to keychain.

Here is the link to download it.

Pubby
  • 51,882
  • 13
  • 139
  • 180
Vijay
  • 420
  • 6
  • 18