Снова запросите разрешение iOS для идентификатора лица, когда оно было отклонено пользователем впервые - PullRequest
0 голосов
/ 08 апреля 2020

После запроса разрешения на использование идентификатора лица для приложения мы получаем предупреждение Apple, позволяющее пользователю разрешить или запретить использование этого технолога ie.

enter image description here

У меня такой вопрос: если пользователь отрицает использование идентификатора лица, есть ли решение запросить его снова, не удаляя приложение.

1 Ответ

0 голосов
/ 08 апреля 2020

Вы можете запросить его снова, но не так, как в первый раз. Что вы можете сделать, когда вы запрашиваете Face ID, вы должны проверить статус авторизации, который может быть notDetermined, authorized, denied или restricted.

В случае, если это notDetermined, вы можете вызвать запрос на доступ, который уже делаете, и, если он отклонен, вы можете предоставить пользователю возможность go в Настройки -> YourAppName для предоставьте FaceID доступ к вашему приложению.

Вот пример, взятый из следующего ответа: Справочный вопрос

Он предназначен для доступа к камере, но вы можете довольно просто применить его к FaceID.

@IBAction func goToCamera()
{
    let status = AVCaptureDevice.authorizationStatus(for: AVMediaType.video)
    switch (status) {
    case .authorized:
        self.popCamera()
    case .notDetermined:
        AVCaptureDevice.requestAccess(for: AVMediaType.video) { (granted) in
            if (granted) {
                self.popCamera()
            } else {
                self.camDenied()
            }
        }
    case .denied:
        self.camDenied()
    case .restricted:
        let alert = UIAlertController(title: "Restricted",
                                      message: "You've been restricted from using the camera on this device. Without camera access this feature won't work. Please contact the device owner so they can give you access.",
                                      preferredStyle: .alert)

        let okAction = UIAlertAction(title: "OK", style: .default, handler: nil)
        alert.addAction(okAction)
        self.present(alert, animated: true, completion: nil)
    }
}

Затем в функции camDenied:

func camDenied() {
    DispatchQueue.main.async {
            var alertText = "It looks like your privacy settings are preventing us from accessing your camera to do barcode scanning. You can fix this by doing the following:\n\n1. Close this app.\n\n2. Open the Settings app.\n\n3. Scroll to the bottom and select this app in the list.\n\n4. Turn the Camera on.\n\n5. Open this app and try again."

            var alertButton = "OK"
            var goAction = UIAlertAction(title: alertButton, style: .default, handler: nil)

            if UIApplication.shared.canOpenURL(URL(string: UIApplicationOpenSettingsURLString)!) {
                alertText = "It looks like your privacy settings are preventing us from accessing your camera to do barcode scanning. You can fix this by doing the following:\n\n1. Touch the Go button below to open the Settings app.\n\n2. Turn the Camera on.\n\n3. Open this app and try again."

                alertButton = "Go"

                goAction = UIAlertAction(title: alertButton, style: .default, handler: {(alert: UIAlertAction!) -> Void in
                    UIApplication.shared.open(URL(string: UIApplicationOpenSettingsURLString)!, options: [:], completionHandler: nil)
                })
            }

            let alert = UIAlertController(title: "Error", message: alertText, preferredStyle: .alert)
            alert.addAction(goAction)
            self.present(alert, animated: true, completion: nil)
    }
}
...