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