我在我的swift 3项目上安装了SwiftKeychainWrapper。
我使用以下方法在给定键上保存值:
let saveSuccessful: Bool = KeychainWrapper.standard.set("hello", forKey: "world")
检查布尔变量的结果时,它为假。
当我尝试检索上述密钥的值时,如下所示:
KeychainWrapper.standard.string(forKey: "world")
结果当然是零。
知道我做错了吗?
xCode在此过程中根本没有检测到任何错误。
感谢您的帮助。
答案 0 :(得分:10)
刚刚激活了项目目标功能选项的Keychain共享,现在正在运行。