|
@@ -14,15 +14,18 @@
|
|
|
|
|
|
@implementation VLCExternalDisplayController
|
|
|
|
|
|
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
|
|
|
+- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
|
|
+{
|
|
|
return NO;
|
|
|
}
|
|
|
|
|
|
-- (BOOL)shouldAutorotate {
|
|
|
+- (BOOL)shouldAutorotate
|
|
|
+{
|
|
|
return NO;
|
|
|
}
|
|
|
|
|
|
-- (NSUInteger)supportedInterfaceOrientations {
|
|
|
+- (NSUInteger)supportedInterfaceOrientations
|
|
|
+{
|
|
|
return ~UIInterfaceOrientationMaskAll;
|
|
|
}
|
|
|
|