Keychain iOS 8 kSecAttrAccessible Crash

On iOS8 when I am trying to set the kSecAttrAccessible key before setting my object .I am facing an Assertion failure crash. KeychainItemWrapper* keychain = [[KeychainItemWrapper alloc] initWithIdentifier:@"KeychainTest" accessGroup:nil]; [keychain setObject:kSecAttrAccessibleWhenUnlocked forKey:kSecAttrAccessible]; [keychain setObject:@"MySuperSecretPassword" forKey:kSecValueData]; The assertion failure is due to SecItemUpdate() returning a status of -50, which appears to be a generic "invalid parameters" error?

Please can anyone help? Its similar to iOS8 + Apple's KeychainItemWrapper results in a crash. But I don't think we have a clear answer there as well?

链接地址: http://www.djcxy.com/p/83290.html

上一篇: 下拉列表(选择框)使用jQuery

下一篇: 钥匙串iOS 8 kSecAttrAccessible崩溃