iOS Keychain Wrapper Locksmith:- LocksmithError 错误 3
iOS Keychain Wrapper Locksmith:- LocksmithError error 3
我正在使用 Locksmith
作为 Swift 的钥匙串包装器,但在尝试 保存数据
时显示以下错误
The operation couldn’t be completed. (Locksmith.LocksmithError error 3.)
这是我试图将数据保存到钥匙串的代码
let datapair = ["Content": "value"]
do {
try Locksmith.saveData(data: datapair, forUserAccount: "key")
} catch let error {
print(error.localizedDescription)
}
如有任何解决方案或建议,我们将不胜感激
Keychain 条目已经存在时出现错误 3。第二次更新数据时,使用
try Locksmith.updateData(data: datapair, forUserAccount: "key")
我正在使用 Locksmith
作为 Swift 的钥匙串包装器,但在尝试 保存数据
The operation couldn’t be completed. (Locksmith.LocksmithError error 3.)
这是我试图将数据保存到钥匙串的代码
let datapair = ["Content": "value"]
do {
try Locksmith.saveData(data: datapair, forUserAccount: "key")
} catch let error {
print(error.localizedDescription)
}
如有任何解决方案或建议,我们将不胜感激
Keychain 条目已经存在时出现错误 3。第二次更新数据时,使用
try Locksmith.updateData(data: datapair, forUserAccount: "key")