1
ローカル認証を使用してアプリで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;
}
}];
}
感謝。