我正在使用本地身份验证在应用中显示iOS密码锁定。有谁知道有办法改变锁屏的颜色/主题?
我的锁定屏幕出现了白色背景,但我看到其他应用程序显示黑色背景 - 这就是我想要的。
我的代码是:
if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthentication error:&error]) {
[context evaluatePolicy:LAPolicyDeviceOwnerAuthentication
localizedReason:@"Are you the device owner?"
reply:^(BOOL success, NSError * _Nullable error) {
if (error) {
[_appdelegate authFailed];
return;
}
if (success) {
[_appdelegate authSuccess];
return;
} else {
[_appdelegate authFailed];
return;
}
}];
}
感谢您的光临。
答案 0 :(得分:0)
我认为我看到的显示不同颜色背景的应用只是模仿了原生密码锁。
我的结论是,不可能改变真实的东西。