我正在尝试在我的钥匙串上做一些工作,并在此处遵循本教程 不幸的是,我在谈论搜索钥匙串时遇到以下错误
Cast of an indirect pointer to an Objective-C pointer to 'CFTypeRef *' (aka 'const void **') is disallowed with ARC
这就是代码的样子
OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef)searchDictionary,(CFTypeRef *)&result);
任何提供有关如何强制转换间接指针的正确代码的帮助将不胜感激。