我如何解析 Swift 中的 TextField iOS 钥匙串?

How can i parse to TextField iOS Keychain in Swift?

我通过 Locksmith Keychain 保存了我的帐户,一切正常,现在我需要解析存储到文本字段的数据,请问我该怎么做? 这是我用来保存帐户的代码:

let accountsave = Locksmith.saveData(["account": self.txtAccount.text], forUserAccount: "myUserAccount", inService: "myAccount").

现在我需要将数据存储解析为 swift 中的文本字段。请帮忙

根据我对你的问题的理解,你要求的是与此类似的内容:

let (dictionary, error) = Locksmith.loadDataForUserAccount("myUserAccount", inService: "myAccount")
if let userData = dictionary as? [String:String] {
    if let account = userData["account"] {
        self.txtAccount.text = account
    }
}