KeychainItemWrapper *keychain = [[KeychainItemWrapper alloc] initWithIDentifIEr"JetTaxiApp_AuthToken" accessGroup:nil];
但是当我尝试将该值设置为keychain时,会出现一个奇怪的异常
[_authenticationTokenKeychain setobject:authenticationToken forKey: @"auth_token"];
Terminating app due to uncaught exception
‘NSInternalinconsistencyException’,reason: ‘Couldn’t add the Keychain
Item.’
钥匙扣尚不存在(在此通话的时刻)
什么可能导致此异常?
The keys that can be used for this purpose and the possible values for each key are Listed in the “Keychain Services Constants” section.
源,有效常数列表:Keychain Services Reference
例如,您可以使用:
总结[_authenticationTokenKeychain setobject:authenticationToken forKey: (__brIDge Nsstring *)kSecValueData];
以上是内存溢出为你收集整理的iphone – 用KeyChainItemWrapper存储KeyChain中的键全部内容,希望文章能够帮你解决iphone – 用KeyChainItemWrapper存储KeyChain中的键所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)