iOS权限警报问题

iOS permission alert issue

我认为:

一旦授予所有权限,它就会将下一个视图与其余 signup/in 流程一起推送。

问题是:在某些设备上,当 运行 应用程序处于干净状态(应用程序已删除并重新安装)时,位置和通知的权限默认设置为拒绝,就好像用户被显示一样被拒绝的警报。

我无法查明这背后的任何合理问题,除了一些过时版本的遗留设置在安装新版本时不会被删除。此视图似乎是唯一可能触发这些警报的地方。

有没有人有类似的问题,可以提出什么建议?

我建议您在要求用户使用之前尝试检查定位服务和通知服务的状态。因为如果用户在您请求他的许可时要禁用这些,他将需要转到设置并在那里启用它。您应该尝试检测用户是否已禁用 location/notification/camera。

相机用:

func accessToCamera(granted: @escaping (() -> Void)) {
    if UIImagePickerController.isSourceTypeAvailable(.camera) {

        let status = AVCaptureDevice.authorizationStatus(forMediaType: AVMediaTypeAudio)

        if status == .authorized {
            granted()
        } else if status == .denied {
            self.cameraPermissionAlert()
        } else if status == .notDetermined {

            AVCaptureDevice.requestAccess(forMediaType: AVMediaTypeVideo, completionHandler: { (accessAllowed) in
                if accessAllowed {
                    granted()
                } else {
                    self.cameraPermissionAlert()
                }
            })
        } else if status == .restricted {
            self.cameraPermissionAlert()
        }
    } else {
       print("Camera not available on this device")
    }
}

func cameraPermissionAlert() {
    let alert = UIAlertController(title: "Access to camera not available", message: "Please enable access to camera in order to use this feature", preferredStyle: .alert)
    alert.addAction(UIAlertAction(title: "Settings", style: .default, handler: { (action) in
        if let url = URL(string: UIApplicationOpenSettingsURLString) {
            if UIApplication.shared.canOpenURL(url) {
                UIApplication.shared.open(url, options: [:], completionHandler: nil)
            }
        }
    }))

    alert.addAction(UIAlertAction(title: "Cancel", style: .default, handler: nil))
    if let top = UIApplication.topViewController() { // This is extension to UIApplication that finds top view controller and displays it
        top.present(alert, animated: true, completion: nil)
        }
    }

对于远程通知,您可以使用如下方式: Determine on iPhone if user has enabled push notifications

对于定位服务:

在这两种情况下,您都可以检测用户是否禁用了此功能,并向用户提供具有打开设置功能的警报控制器。