iOS权限警报问题
iOS permission alert issue
我认为:
- 为
UIApplicationDidBecomeActiveNotification
创建观察者并调用选择器
- 依次询问用户以下权限:使用相机、定位和接收推送通知。
- 该视图具有三个
UIButton
状态,具体取决于每个权限状态,如果拒绝任何权限,它们会将用户导航到设置
- 点击代表拒绝状态权限的按钮可将用户导航至设置
- 一旦隐藏每个警报,使用观察者操作,将触发下一个警报并更新所有按钮状态以反映任何更改
一旦授予所有权限,它就会将下一个视图与其余 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
对于定位服务:
在这两种情况下,您都可以检测用户是否禁用了此功能,并向用户提供具有打开设置功能的警报控制器。
我认为:
- 为
UIApplicationDidBecomeActiveNotification
创建观察者并调用选择器 - 依次询问用户以下权限:使用相机、定位和接收推送通知。
- 该视图具有三个
UIButton
状态,具体取决于每个权限状态,如果拒绝任何权限,它们会将用户导航到设置 - 点击代表拒绝状态权限的按钮可将用户导航至设置
- 一旦隐藏每个警报,使用观察者操作,将触发下一个警报并更新所有按钮状态以反映任何更改
一旦授予所有权限,它就会将下一个视图与其余 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
对于定位服务:
在这两种情况下,您都可以检测用户是否禁用了此功能,并向用户提供具有打开设置功能的警报控制器。