KeychainItemWrapper 未在 iOS 上加载 9 OSStatus -34018 (errSecMissingEntitlement)
KeychainItemWrapper not getting loaded on iOS 9 OSStatus -34018 (errSecMissingEntitlement)
我一直在使用 KeychainItemWrapper,效果很好。但是由于我已经将我的 phone 更新为 iOS 9,它出于某种原因不存储 sessionID。
+ (BOOL)createKeychainValue:(NSString *)value forIdentifier:(NSString *)identifier
{
NSMutableDictionary *dictionary = [self setupSearchDirectoryForIdentifier:identifier];
NSData *valueData = [value dataUsingEncoding:NSUTF8StringEncoding];
[dictionary setObject:valueData forKey:(__bridge id)kSecValueData];
// Protect the keychain entry so it's only valid when the device is unlocked at least once.
[dictionary setObject:(__bridge id)kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly forKey:(__bridge id)kSecAttrAccessible];
// **THIS LINE OF CODE RETURNS -34108**
OSStatus status = SecItemAdd((__bridge CFDictionaryRef)dictionary, NULL);
// If the addition was successful, return. Otherwise, attempt to update existing key or quit (return NO).
if (status == errSecSuccess) {
return YES;
} else if (status == errSecDuplicateItem){
return [self updateKeychainValue:value forIdentifier:identifier];
} else {
return NO; **The call returns here...**
}
}
有人知道怎么回事吗?
编辑
最奇怪的事情:它只是偶尔发生并且总是在调试模式下。
EDIT2
由于这只发生在调试模式下,根据变量的类型,我通常会采用两种解决方法:
- 始终保留从本地钥匙串加载的最后一个有效变量(例如 sessionID),并在调试模式下将其用作备份
- 在调试时尽可能忽略无效值(在这种情况下,我会添加一个额外的控制变量 allow/disallow 这些无效值)
(使用#ifdef DEBUG 检查您是否处于调试模式)
根据 Apple 的说法,目前没有解决方案。
https://forums.developer.apple.com/thread/4743
我一直在使用 KeychainItemWrapper,效果很好。但是由于我已经将我的 phone 更新为 iOS 9,它出于某种原因不存储 sessionID。
+ (BOOL)createKeychainValue:(NSString *)value forIdentifier:(NSString *)identifier
{
NSMutableDictionary *dictionary = [self setupSearchDirectoryForIdentifier:identifier];
NSData *valueData = [value dataUsingEncoding:NSUTF8StringEncoding];
[dictionary setObject:valueData forKey:(__bridge id)kSecValueData];
// Protect the keychain entry so it's only valid when the device is unlocked at least once.
[dictionary setObject:(__bridge id)kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly forKey:(__bridge id)kSecAttrAccessible];
// **THIS LINE OF CODE RETURNS -34108**
OSStatus status = SecItemAdd((__bridge CFDictionaryRef)dictionary, NULL);
// If the addition was successful, return. Otherwise, attempt to update existing key or quit (return NO).
if (status == errSecSuccess) {
return YES;
} else if (status == errSecDuplicateItem){
return [self updateKeychainValue:value forIdentifier:identifier];
} else {
return NO; **The call returns here...**
}
}
有人知道怎么回事吗?
编辑
最奇怪的事情:它只是偶尔发生并且总是在调试模式下。
EDIT2
由于这只发生在调试模式下,根据变量的类型,我通常会采用两种解决方法: - 始终保留从本地钥匙串加载的最后一个有效变量(例如 sessionID),并在调试模式下将其用作备份 - 在调试时尽可能忽略无效值(在这种情况下,我会添加一个额外的控制变量 allow/disallow 这些无效值)
(使用#ifdef DEBUG 检查您是否处于调试模式)
根据 Apple 的说法,目前没有解决方案。 https://forums.developer.apple.com/thread/4743