I have included TouchID in my application using LAContext , for example:

However, I want to change the name of the button name from "Enter Password" to enter "Enter Security Code" (or something like that), for example:

How do I change the name of this button?
Here is the LAContext documentation and here is my code:
var touchIDContext = LAContext() if touchIDContext.canEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, error: &msgError) { touchIDContext.evaluatePolicy(.DeviceOwnerAuthenticationWithBiometrics, localizedReason: touchIDMessage) { (success: Bool, error: NSError!) -> Void in if success { println("Success") } else { println("Error: \(error)") } } }
source share