123456789101112131415161718192021222324252627282930313233 |
- //
- // VLCExternalDisplayController.m
- // AspenProject
- //
- // Created by Gleb on 4/6/13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "VLCExternalDisplayController.h"
- @interface VLCExternalDisplayController ()
- @end
- @implementation VLCExternalDisplayController
- - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
- {
- return NO;
- }
- - (BOOL)shouldAutorotate
- {
- return NO;
- }
- - (NSUInteger)supportedInterfaceOrientations
- {
- return ~UIInterfaceOrientationMaskAll;
- }
- @end
|