Initial commit
This commit is contained in:
60
RCTVideo.m
Normal file
60
RCTVideo.m
Normal file
@@ -0,0 +1,60 @@
|
||||
#import "RCTVideo.h"
|
||||
#import "RCTLog.h"
|
||||
|
||||
@import MediaPlayer;
|
||||
|
||||
@implementation RCTVideo
|
||||
{
|
||||
MPMoviePlayerController *_player;
|
||||
}
|
||||
|
||||
- (id)init
|
||||
{
|
||||
if ((self = [super init])) {
|
||||
_player = [[MPMoviePlayerController alloc] init];
|
||||
[self addSubview: _player.view];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)setSrc:(NSString *)source
|
||||
{
|
||||
NSURL *videoURL = [[NSURL alloc] initFileURLWithPath:[[NSBundle mainBundle] pathForResource:source ofType:@"mp4"]];
|
||||
[_player setContentURL:videoURL];
|
||||
[_player setControlStyle:MPMovieControlStyleNone];
|
||||
[_player setScalingMode:MPMovieScalingModeNone];
|
||||
[_player setRepeatMode:MPMovieRepeatModeOne];
|
||||
[_player prepareToPlay];
|
||||
[_player play];
|
||||
}
|
||||
|
||||
- (void)setResizeMode:(NSInteger)mode
|
||||
{
|
||||
[_player setScalingMode:mode];
|
||||
}
|
||||
|
||||
- (NSArray *)reactSubviews
|
||||
{
|
||||
NSArray *subviews = @[_player.view];
|
||||
return subviews;
|
||||
}
|
||||
|
||||
- (void)insertReactSubview:(UIView *)view atIndex:(NSInteger)atIndex
|
||||
{
|
||||
RCTLogError(@"video cannot have any subviews");
|
||||
return;
|
||||
}
|
||||
|
||||
- (void)removeReactSubview:(UIView *)subview
|
||||
{
|
||||
RCTLogError(@"video cannot have any subviews");
|
||||
return;
|
||||
}
|
||||
|
||||
- (void)layoutSubviews
|
||||
{
|
||||
[super layoutSubviews];
|
||||
_player.view.frame = self.bounds;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user