-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImagePickerManager.h
40 lines (31 loc) · 1.03 KB
/
ImagePickerManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#import <React/RCTBridgeModule.h>
#import <UIKit/UIKit.h>
#import <React/RCTConvert.h>
typedef NS_ENUM(NSInteger, RNImagePickerTarget) {
camera = 1,
library
};
@implementation RCTConvert(PresentationStyle)
// see: https://developer.apple.com/documentation/uikit/uimodalpresentationstyle?language=objc
RCT_ENUM_CONVERTER(
UIModalPresentationStyle,
(@{
@"currentContext": @(UIModalPresentationCurrentContext),
@"fullScreen": @(UIModalPresentationFullScreen),
@"pageSheet": @(UIModalPresentationPageSheet),
@"formSheet": @(UIModalPresentationFormSheet),
@"popover": @(UIModalPresentationPopover),
@"overFullScreen": @(UIModalPresentationOverFullScreen),
@"overCurrentContext": @(UIModalPresentationOverCurrentContext)
}),
UIModalPresentationCurrentContext,
integerValue)
@end
#ifdef RCT_NEW_ARCH_ENABLED
#import "RNImagePickerSpec.h"
@interface ImagePickerManager : NSObject <NativeImagePickerSpec>
@end
#else
@interface ImagePickerManager : NSObject <RCTBridgeModule>
@end
#endif