输入密码警报 - KeychainAccess

时间:2017-07-05 13:37:23

标签: swift cocoapods

我正在使用https://github.com/kishikawakatsumi/KeychainAccess,我无法在TouchID身份验证提示中显示“输入密码”选项。它在文档中的一个图像上可见但我不能在我的应用程序中应用它?感谢

let keychain = Keychain(service: "com.myApp")

DispatchQueue.global().async {
    do {
        let password = try keychain
            .authenticationPrompt("Authenticate to login to server")
            .get("value")

        print("password: \(password)")
    } catch let error {
        // Error handling if needed...
    }
}

0 个答案:

没有答案