我正在试图弄清楚如何使用SSkeychain来存储instagram api的访问令牌。我目前正在使用NSUserDefault类,但我不认为这是最好的想法。
SSkeychain类本身是否需要分配和初始化才能使用?
答案 0 :(得分:28)
SSKeychain
只提供类方法,因此您无需初始化实例。但它需要一些设置。 readme是一个很好的信息来源。
这是一个帮助的代码示例:
// Specify how the keychain items can be access
// Do this in your -application:didFinishLaunchingWithOptions: callback
[SSKeychain setAccessibilityType:kSecAttrAccessibleWhenUnlocked];
// Set an access token for later use
[SSKeychain setPassword:instagramToken forService:@"InstagramService" account:@"com.yourapp.keychain"];
// Access that token when needed
[SSKeychain passwordForService:@"InstagramService" account:@"com.yourapp.keychain"];
// Delete the token when appropriate (on sign out, perhaps)
[SSKeychain deletePasswordForService:@"InstagramService" account:@"com.yourapp.keychain"];
我还建议制作那些@"InstagramService"
和@"com.yourapp.keychain"
字符串常量,以便更容易引用它们。
希望有所帮助!