react-native-video/RCTVideo.m
2015-03-30 22:07:55 -07:00

61 lines
1.2 KiB
Objective-C

#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