import UIKit
import AVKit
import Photos
struct PermissionsHelper {
static func cameraEnable() -> Bool {
func cameraResult() {
let authStatus = AVCaptureDevice.authorizationStatus(for: AVMediaType.video)
if (authStatus == .authorized) {
// 已授权,可以打开相机
saveCamera(value: "1")
} else if (authStatus == .denied) {
// 已拒绝
saveCamera(value: "0")
let alertV = UIAlertView.init(title: "提示", message: "请去-> [设置 - 隐私 - 相机] 打开访问开关", delegate: nil, cancelButtonTitle: nil, otherButtonTitles: "确定")
alertV.show()
} else if (authStatus == .restricted) {
// 相机权限受限
saveCamera(value: "0")
let alertV = UIAlertView.init(title: "提示", message: "相机权限受限", delegate: nil, c
swift 授权状态判断
最新推荐文章于 2024-08-21 08:44:16 发布
本文详细介绍了如何在Swift中检查应用的权限状态,包括获取用户授权、处理权限请求响应和适配iOS权限策略变化。通过示例代码,开发者可以学会如何优雅地处理各种授权场景。
摘要由CSDN通过智能技术生成