出于某种原因,我无法让这个简单的钥匙串代码工作。
//Let's create an empty mutable dictionary:
NSMutableDictionary *keychainItem = [NSMutableDictionary dictionary];
NSString *username = self.nwUsernameTxtFld.text;
NSString *password = self.passwordTxtFld.text;
//Populate it with the data and the attributes we want to use.
keychainItem[(__bridge id)kSecClass] = (__bridge id)kSecClassInternetPassword; // We specify what kind of keychain item this is.
keychainItem[(__bridge id)kSecAttrAccessible] = (__bridge id)kSecAttrAccessibleWhenUnlocked; // This item can only be accessed when the user unlocks the device.
keychainItem[(__bridge id)kSecAttrServer] = @"http://www.myawesomeservice.com";
keychainItem[(__bridge id)kSecAttrAccount] = username; //Our username.
if(SecItemCopyMatching((__bridge CFDictionaryRef)keychainItem, NULL) == noErr)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"The Item Already Exists", nil)
message:NSLocalizedString(@"Please update it instead.", )
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK", nil)
otherButtonTitles:nil];
[alert show];
}else
{
NSLog(@"can add new item.");
keychainItem[(__bridge id)kSecValueData] = password; //Our password
OSStatus sts = SecItemAdd((__bridge CFDictionaryRef)keychainItem, NULL);
NSLog(@"%d", (int)sts);
}
我已经检查了苹果关于此事的文档,并根据它:
传递给函数的一个或多个参数无效。
然而,该SecAddItem
函数需要两个参数:
OSStatus SecItemAdd (
CFDictionaryRef attributes,
CFTypeRef *result
);
我将 NULL 传递给结果。根据 Apple 的文档,这是可以接受的:
结果返回时,对新添加项目的引用。结果的确切类型基于属性中提供的值,如下所述。如果不需要此结果,则传递 NULL。
所以我真的不知道我在这里做错了什么。我正在向它传递一个字典和一个 NULL 值。该函数需要两者,我将两者都提供。有人可以告诉我有什么问题吗?
作为参考,文档在这里。