gpt4 book ai didi

ios - Swift 应用程序在关闭时有奇怪的行为

转载 作者:行者123 更新时间:2023-12-01 23:10:17 26 4
gpt4 key购买 nike

我正在开发一个在开头使用 Face/Touch ID 的应用程序。我通过将此函数添加到我的 MainViewController() 中来实现此目的:

let context = LAContext()

if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: nil) {
context.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: "Verifying") { (success, err) in
if success {
DispatchQueue.main.async {
self.loginSuccessfull()
self.button.removeFromSuperview()
}
} else {
if let err = err {
print(err)
}
}
}
}

这会在 ViewDidLoad 中和通过按钮调用,如 this video 所示。 .

正如你所看到的,当我尝试关闭我的应用程序时,它有一个非常奇怪的行为,我确信这是由 FaceID 引起的。

有什么建议可以解决这个问题吗?

崩溃日志:

Error Domain=com.apple.LocalAuthentication Code=-4 "Caller moved to background." UserInfo={NSLocalizedDescription=Caller moved to background.}

最佳答案

我相信我已经通过延迟评估找到了该问题的解决方案。

我注意到,当我在评估之前在 UI 中出现任何类型的延迟时(例如:在显示面容 ID 警报之前向上移动 Logo 的动画),崩溃会完全停止。

所以我做了另一个延迟测试,如下所示:

override func viewDidAppear(_ animated: Bool) {
let context = LAContext()
if context.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: nil) {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
context.evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: "Biometric test") { success, error in
DispatchQueue.main.async {
if success {
doSome()
} else {
if let error = error { print(error) }
}
}
}
}
}
}

通过该实现,我的崩溃为零。

*注意:我还尝试了不同的延迟时间,从 0.1 到 2.0 秒,都对我有用。

关于ios - Swift 应用程序在关闭时有奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59472629/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com