2016-03-31 15:10:25 -06:00
|
|
|
#import "RCTVideoPlayerViewController.h"
|
|
|
|
|
|
|
|
@interface RCTVideoPlayerViewController ()
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RCTVideoPlayerViewController
|
|
|
|
|
2016-04-01 02:51:31 -06:00
|
|
|
- (void)viewDidDisappear:(BOOL)animated
|
2016-03-31 15:10:25 -06:00
|
|
|
{
|
2018-06-02 06:55:55 -06:00
|
|
|
[super viewDidDisappear:animated];
|
|
|
|
[_rctDelegate videoPlayerViewControllerWillDismiss:self];
|
|
|
|
[_rctDelegate videoPlayerViewControllerDidDismiss:self];
|
2016-03-31 15:10:25 -06:00
|
|
|
}
|
|
|
|
|
2018-08-02 11:32:50 -06:00
|
|
|
- (BOOL)shouldAutorotate {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
|
|
|
|
|
|
|
|
return UIInterfaceOrientationMaskLandscape;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
|
|
|
|
|
|
|
|
return UIInterfaceOrientationLandscapeLeft;
|
|
|
|
}
|
|
|
|
|
2016-03-31 15:10:25 -06:00
|
|
|
@end
|