VLCExternalDisplayController.m 542 B

123456789101112131415161718192021222324252627282930313233
  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. {
  14. return NO;
  15. }
  16. - (BOOL)shouldAutorotate
  17. {
  18. return NO;
  19. }
  20. - (NSUInteger)supportedInterfaceOrientations
  21. {
  22. return ~UIInterfaceOrientationMaskAll;
  23. }
  24. @end