标签:video ati dev art pop res color denied family
// 相机权限
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
}
标签:video ati dev art pop res color denied family
原文地址:http://www.cnblogs.com/Free-Thinker/p/7121061.html