swift-判断是否已获得相机相册权限
Posted brave-sailor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift-判断是否已获得相机相册权限相关的知识,希望对你有一定的参考价值。
// 相机权限
func isRightCamera() -> Bool {
let authStatus = AVCaptureDevice.authorizationStatus(forMediaType: AVMediaTypeVideo)
return authStatus != .restricted && authStatus != .denied
}
// 相册权限
func isRightPhoto() -> Bool {
let authStatus = ALAssetsLibrary.authorizationStatus()
return authStatus != .restricted && authStatus != .denied
}
以上是关于swift-判断是否已获得相机相册权限的主要内容,如果未能解决你的问题,请参考以下文章