Reputation: 608
In our application we need "Enter Passcode", but by default TouchID pop-up shows "Enter password" when user touchID authentication failed.This may confuse users because the same user has another password for different purpose.
Can I change this?
Upvotes: 2
Views: 1081
Reputation: 59
Yes, you can change it with:
let authenticationContext = LAContext()
authenticationContext.localizedFallbackTitle = "Enter passcode"
Upvotes: 1