[laContecxt evaluatePolicy:LAPolicyDeviceOwnerAuthentication
localizedReason:@"My Reason to be displayed on face id prompt"
reply:^(BOOL success, NSError *error) {
if (success) {
// User authenticated successfully, take appropriate action
} else {
// User did not authenticate s
}
}];
嗨,我使用了上述相同的方法,我遇到的问题是我提供的本地化原因未显示
在 Touch Id 的情况下,它显示在哪里你能帮忙吗?
我想在提示时显示一些消息,正如我们在具有本地化原因的 Touch Id 上看到的那样。