react-native-video/RCTVideo.h

15 lines
407 B
C
Raw Normal View History

#import "RCTView.h"
2015-12-22 16:39:04 -07:00
#import <AVFoundation/AVFoundation.h>
#import "AVKit/AVKit.h"
2016-03-31 13:03:54 -06:00
#import "UIView+FindUIViewController.h"
@class RCTEventDispatcher;
2015-03-30 23:07:55 -06:00
@interface RCTVideo : UIView
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
2015-12-22 16:39:04 -07:00
- (AVPlayerViewController*)createPlayerViewController:(AVPlayer*)player withPlayerItem:(AVPlayerItem*)playerItem;
2015-03-30 23:07:55 -06:00
@end