19 lines
320 B
Objective-C
19 lines
320 B
Objective-C
//
|
|
// LBXPermissionCamera.h
|
|
// LBXKits
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
|
|
@interface LBXPermissionCamera : NSObject
|
|
|
|
+ (BOOL)authorized;
|
|
|
|
+ (AVAuthorizationStatus)authorizationStatus;
|
|
|
|
+ (void)authorizeWithCompletion:(void(^)(BOOL granted ,BOOL firstTime ))completion;
|
|
|
|
@end
|