69 lines
1.3 KiB
Objective-C
69 lines
1.3 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 prepareToPlay];
|
|
[_player play];
|
|
}
|
|
|
|
- (void)setResizeMode:(NSInteger)mode
|
|
{
|
|
[_player setScalingMode:mode];
|
|
}
|
|
|
|
- (void)setRepeat:(BOOL)repeat
|
|
{
|
|
if (repeat) {
|
|
[_player setRepeatMode:MPMovieRepeatModeOne];
|
|
} else {
|
|
[_player setRepeatMode:MPMovieRepeatModeNone];
|
|
}
|
|
}
|
|
|
|
- (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
|