VLCExternalDisplayController.m 750 B

1234567891011121314151617181920212223242526272829303132
  1. /*****************************************************************************
  2. * VLCExternalDisplayController.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Gleb Pinigin <gpinigin # gmail.com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCExternalDisplayController.h"
  13. @interface VLCExternalDisplayController ()
  14. @end
  15. @implementation VLCExternalDisplayController
  16. - (BOOL)shouldAutorotate
  17. {
  18. return NO;
  19. }
  20. - (NSUInteger)supportedInterfaceOrientations
  21. {
  22. return ~UIInterfaceOrientationMaskAll;
  23. }
  24. @end