FXKeychain, by nicklockwood just saved me about an hour of brushing up on the latest changes to Apple’s already slightly complicated password manager library, Keychain. What would otherwise be a bunch of convoluted C calls with ARC complications and a myriad of other caveats, FXKeychain provides a ridiculously easy to use wrapper that resembles something intuitive that we should all be somewhat familiar with: Dictionary syntax.
To insert a value into Keychain:
[FXKeychain defaultKeychain][@"password"] = sipAuthPassword;
To retrieve a value:
[FXKeychain defaultKeychain][@"password"];
That’s it! Somebody give nicklockwood some love!