2dd5025190
This reverts commit c9096d16f7
.
44 lines
1.1 KiB
Objective-C
44 lines
1.1 KiB
Objective-C
#import "RCTVideoPlayerViewController.h"
|
|
|
|
@interface RCTVideoPlayerViewController ()
|
|
|
|
@end
|
|
|
|
@implementation RCTVideoPlayerViewController
|
|
|
|
- (BOOL)shouldAutorotate {
|
|
|
|
if (self.autorotate || self.preferredOrientation.lowercaseString == nil || [self.preferredOrientation.lowercaseString isEqualToString:@"all"])
|
|
return YES;
|
|
|
|
return NO;
|
|
}
|
|
|
|
- (void)viewDidDisappear:(BOOL)animated
|
|
{
|
|
[super viewDidDisappear:animated];
|
|
[_rctDelegate videoPlayerViewControllerWillDismiss:self];
|
|
[_rctDelegate videoPlayerViewControllerDidDismiss:self];
|
|
}
|
|
|
|
#if !TARGET_OS_TV
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
|
|
return UIInterfaceOrientationMaskAll;
|
|
}
|
|
|
|
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
|
|
if ([self.preferredOrientation.lowercaseString isEqualToString:@"landscape"]) {
|
|
return UIInterfaceOrientationLandscapeRight;
|
|
}
|
|
else if ([self.preferredOrientation.lowercaseString isEqualToString:@"portrait"]) {
|
|
return UIInterfaceOrientationPortrait;
|
|
}
|
|
else { // default case
|
|
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
|
|
return orientation;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
@end
|