我一直在使用KeychainItemWrapper。但由于我已将手机更新为iOS 9,因此出于某种原因,它不存储会话ID。
+ (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),并在调试模式下将其用作备份 - 如果可能,在调试时忽略无效值(在这种情况下,我将添加一个额外的控制变量以允许/禁止这些无效值)
(使用#ifdef DEBUG检查你是否处于调试模式)