私は次のコードを持っています:
OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef)attrDictionary, (CFTypeRef *)&value);
これにより、次のエラーが発生します。
Implicit conversion of an indirect pointer to an Objective-C pointer to 'CFTypeRef *' (aka 'const void **') is disallowed with ARC
これを修正する方法について何かアイデアはありますか?に変更CFTypeRef *
してみましたid *
が、うまくいきませんでした
完全な方法は次のとおりです。
+ (NSData *)keychainValueForKey:(NSString *)key {
if (key == nil) {
return nil;
}
NSMutableDictionary *attrDictionary = [self attributesDictionaryForKey:key];
// Only want one match
[attrDictionary setObject:(id)kSecMatchLimitOne forKey:(id)kSecMatchLimit];
// Only one value being searched only need a bool to tell us if it was successful
[attrDictionary setObject:(id)kCFBooleanTrue forKey:(id)kSecReturnData];
NSData *value = nil;
OSStatus status = SecItemCopyMatching((CFDictionaryRef)attrDictionary, (CFTypeRef *)&value);
if (status != errSecSuccess) {
DLog(@"KeychainUtils keychainValueForKey: - Error finding keychain value for key. Status code = %d", status);
}
return [value autorelease];
}