标签:
+(BOOL)getSystemPhotoAuthority { BOOL agree=NO; AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo]; if(authStatus == AVAuthorizationStatusAuthorized||authStatus == AVAuthorizationStatusNotDetermined) { agree=YES; }else { agree=NO; } return agree; } +(BOOL)getSystemImageAuthority { BOOL agree=NO; ALAuthorizationStatus author = [ALAssetsLibrary authorizationStatus]; if(author == ALAuthorizationStatusAuthorized||author == ALAuthorizationStatusNotDetermined) { agree=YES; }else { agree=NO; } return agree; }
标签:
原文地址:http://www.cnblogs.com/liaods/p/4829511.html