반응형
[ios] Camera Permission |
@import AVFoundation;
// 권한 체크
[AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo] == AVAuthorizationStatusAuthorized;
// 권한 요청
[AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL isGranted){
// do something
}];
반응형
'프로그래밍 놀이터 > iOS' 카테고리의 다른 글
[ios] 앱을 재설치 했을 때 Permission Check 를 기억하는 문제 해결 방법 (0) | 2018.02.04 |
---|---|
[ios] Gallary ( Photo Album) Permission 체크 (0) | 2018.02.03 |
[iOS Study] 병렬 프로그래밍 가이드 ( dispatch queue ) (0) | 2018.02.01 |
[ios] .c 파일을 import 한 후 build 가 안 된다면 pch 파일을 확인해봐라. (0) | 2018.01.31 |
[ios] 압축, 압축해제 ( archive, unarchive ) (0) | 2018.01.30 |
댓글