VLCExternalDisplayController.m 612 B

1234567891011121314151617181920212223242526272829303132333435
  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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import "VLCExternalDisplayController.h"
  11. @interface VLCExternalDisplayController ()
  12. @end
  13. @implementation VLCExternalDisplayController
  14. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
  15. {
  16. return NO;
  17. }
  18. - (BOOL)shouldAutorotate
  19. {
  20. return NO;
  21. }
  22. - (NSUInteger)supportedInterfaceOrientations
  23. {
  24. return ~UIInterfaceOrientationMaskAll;
  25. }
  26. @end