Search code examples
iostouch-id

Touch Id prompt buttons localization


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?


Solution

  • 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"