53 lines
1.4 KiB
Objective-C
53 lines
1.4 KiB
Objective-C
#import "RCTVideoPlayerViewController.h"
|
|
|
|
@interface RCTVideoPlayerViewController ()
|
|
|
|
@end
|
|
|
|
@implementation RCTVideoPlayerViewController
|
|
|
|
- (id)init {
|
|
self = [super init];
|
|
if (self) {
|
|
self.autorotate = true; // autorotate should be true by default
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidDisappear:(BOOL)animated
|
|
{
|
|
[super viewDidDisappear:animated];
|
|
[_rctDelegate videoPlayerViewControllerWillDismiss:self];
|
|
[_rctDelegate videoPlayerViewControllerDidDismiss:self];
|
|
}
|
|
|
|
- (BOOL)shouldAutorotate {
|
|
return self.autorotate;
|
|
}
|
|
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
|
|
|
|
if ([self.preferredOrientation.lowercaseString isEqualToString:@"landscape"]) {
|
|
return UIInterfaceOrientationMaskLandscape;
|
|
}
|
|
else if ([self.preferredOrientation.lowercaseString isEqualToString:@"portrait"]) {
|
|
return UIInterfaceOrientationMaskPortrait;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
|
|
@end
|