Touch Id prompt buttons localization

1k Views Asked by At

I recently integrated Touch Id into my app, using the following framework: https://github.com/auth0/SimpleKeychain.

I have not yet found a way to localize the "Enter Passcode" button in the Touch Id prompt, which is always displayed in English.

Does anyone know how to localize it?

1

There are 1 best solutions below

2
On BEST ANSWER

Set the localizedFallbackTitle property:

Objective-C:

LAContext *context = [[LAContext alloc] init];
context.localizedFallbackTitle = @"YOUR TEXT HERE";

Swift:

var touchIDContext = LAContext()
context.localizedFallbackTitle = "YOUR TEXT HERE"