VLCExternalDisplayController.m 542 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // VLCExternalDisplayController.m
  3. // AspenProject
  4. //
  5. // Created by Gleb on 4/6/13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import "VLCExternalDisplayController.h"
  9. @interface VLCExternalDisplayController ()
  10. @end
  11. @implementation VLCExternalDisplayController
  12. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
  13. return NO;
  14. }
  15. - (BOOL)shouldAutorotate {
  16. return NO;
  17. }
  18. - (NSUInteger)supportedInterfaceOrientations {
  19. return ~UIInterfaceOrientationMaskAll;
  20. }
  21. @end