[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
}
}];
Hi I have used the same above method , Problem I am having is that the Localised Reason I am Providing is not shown
Where as in case of Touch Id it is shown Can you Help with this ?
I want to show some message on prompt as we can see on Touch Id with Localised reason.