我最近使用以下框架将Touch Id集成到我的应用中:https://github.com/auth0/SimpleKeychain。
我还没有找到一种方法来本地化Touch ID提示中的“输入密码”按钮,该按钮始终以英文显示。
有谁知道如何本地化?
答案 0 :(得分:1)
设置localizedFallbackTitle属性:
目标-C:
LAContext *context = [[LAContext alloc] init];
context.localizedFallbackTitle = @"YOUR TEXT HERE";
夫特:
var touchIDContext = LAContext()
context.localizedFallbackTitle = "YOUR TEXT HERE"