Show iOS controls if not fullscreen

Show controls without calling the present full screen method.
This commit is contained in:
Landon Sherwood 2017-08-29 16:39:18 -05:00
parent 4bf2b2c45f
commit a4ada46b30

View File

@ -90,7 +90,7 @@ static NSString *const timedMetadata = @"timedMetadata";
- (AVPlayerViewController*)createPlayerViewController:(AVPlayer*)player withPlayerItem:(AVPlayerItem*)playerItem {
RCTVideoPlayerViewController* playerLayer= [[RCTVideoPlayerViewController alloc] init];
playerLayer.showsPlaybackControls = NO;
playerLayer.showsPlaybackControls = YES;
playerLayer.rctDelegate = self;
playerLayer.view.frame = self.bounds;
playerLayer.player = _player;