27 lines
371 B
Objective-C
27 lines
371 B
Objective-C
//
|
|
// LBXPermissionPhotos.h
|
|
// LBXKits
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface LBXPermissionPhotos : NSObject
|
|
|
|
+ (BOOL)authorized;
|
|
|
|
/**
|
|
photo permission status
|
|
|
|
@return
|
|
0 :NotDetermined
|
|
1 :Restricted
|
|
2 :Denied
|
|
3 :Authorized
|
|
*/
|
|
+ (NSInteger)authorizationStatus;
|
|
|
|
+ (void)authorizeWithCompletion:(void(^)(BOOL granted,BOOL firstTime))completion;
|
|
|
|
@end
|