react-native-camera/RCTCamera.h
2015-04-01 10:32:53 -07:00

14 lines
316 B
Objective-C

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import "ViewfinderView.h"
@class AVCaptureSession;
@interface RCTCamera : UIView
@property (nonatomic) AVCaptureSession *session;
@property (nonatomic) ViewfinderView *viewfinder;
@property (nonatomic) AVCaptureDeviceInput *captureDeviceInput;
@end