SecItemCopyMatching返回-25300

时间:2015-07-13 07:16:43

标签: ios objective-c

我的应用中有以下codesnippet。

    CFTypeRef result = nil;
    OSStatus userPresenceStatus = SecItemCopyMatching((__bridge CFDictionaryRef)query, &result);

SecItemCopyMatching返回-25300。它发生在一些iPhone 6设备上,但不是在每台设备上。这段代码是什么意思?可能是什么原因?

感谢您的建议 弗兰克

1 个答案:

答案 0 :(得分:7)

Error 25300 is errSecItemNotFound, which means that there is no such item in your key chain

你可以找到a list of potential result codes for Keychain Services here

我猜你正在尝试匹配的钥匙串项目在该特定设备上不存在。