mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 01:38:18 +00:00
15 lines
303 B
Objective-C
15 lines
303 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import "ViewfinderView.h"
|
|
|
|
@class RCTCameraManager;
|
|
|
|
@interface RCTCamera : UIView
|
|
|
|
@property (nonatomic) ViewfinderView *viewfinder;
|
|
@property (nonatomic) RCTCameraManager *manager;
|
|
|
|
- (id)initWithManager:(RCTCameraManager*)manager;
|
|
|
|
@end
|