我在KeyChain中存储了一个字符串。我正在尝试使用SSKeychain.h,SSKeychain.m,SSKeychainquery.h和SSKeychainquery.h
由于这些文件中存在许多方法。所以我很困惑,想知道使用哪种方法以及如何使用。要存储的字符串是我的应用程序的密码。
答案 0 :(得分:0)
您可以尝试以下变体:
// Store credentials in Keychain
[SSKeychain setPassword:@"thePassword"
forService:@"com.yourCompany.yourApp"
account:@"theUserName"];
// Retrieve credentials from Keychain
NSString *password = [SSKeychain passwordForService:@"com.yourCompany.yourApp"
account:@"theUserName"];