我正在使用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...
}
}