2
0

LBXPermissionCamera.h 409 B

123456789101112131415161718192021
  1. //
  2. // LBXPermissionCamera.h
  3. // LBXKits
  4. //
  5. // Created by lbxia on 2017/9/10.
  6. // Copyright © 2017年 lbx. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <AVFoundation/AVFoundation.h>
  10. @interface LBXPermissionCamera : NSObject
  11. + (BOOL)authorized;
  12. + (AVAuthorizationStatus)authorizationStatus;
  13. + (void)authorizeWithCompletion:(void(^)(BOOL granted ,BOOL firstTime ))completion;
  14. @end