在我的应用程序中,我需要存储用户名和密码。我知道这些数据很敏感。所以我想将它存储在钥匙串(keychain)中。
问题是凭据是在 iOS 设置 (NSUserDefault) 中设置的。
有没有办法使用 iOS 设置将这些敏感数据存储在钥匙串(keychain)中??
提前致谢!!
Best Answer-推荐答案 strong>
如果您能够读取 NSUserDefaults 中的值,则可以很容易地保存到钥匙串(keychain):https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/Reference/reference.html
关于ios - 将 NSUserDefault 存储在钥匙串(keychain)中,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20245685/
|