VLCExternalDisplayController.m 497 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // VLCExternalDisplayController.m
  3. // VLC for iOS
  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)shouldAutorotate
  15. {
  16. return NO;
  17. }
  18. - (NSUInteger)supportedInterfaceOrientations
  19. {
  20. return ~UIInterfaceOrientationMaskAll;
  21. }
  22. @end