Swift 3 - SwiftKeychainWrapper:KeychainWrapper.standard.set 不持久

Swift 3 - SwiftKeychainWrapper: KeychainWrapper.standard.set not persistent

我已经在我的 swift 3 项目上安装了 SwiftKeychainWrapper

我使用以下方法在给定键上保存值:

let saveSuccessful: Bool = KeychainWrapper.standard.set("hello", forKey: "world")

检查布尔变量的结果时,为false

当我尝试检索上面的键的值时,如下所示:

KeychainWrapper.standard.string(forKey: "world")

结果当然是零

知道我做错了什么吗?

xCode.

在此过程中未检测到错误

感谢您的帮助。

刚刚在项目目标的功能选项上激活了钥匙串共享,现在可以使用了。