VLCSidebarController.h 873 B

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLCSidebarController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Author: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <Foundation/Foundation.h>
  13. @interface VLCSidebarController : NSObject
  14. + (instancetype)sharedInstance;
  15. - (void)hideSidebar;
  16. - (void)toggleSidebar;
  17. - (void)selectRowAtIndexPath:(NSIndexPath *)indexPath scrollPosition:(UITableViewScrollPosition)scrollPosition;
  18. @property (readonly) UIViewController *fullViewController;
  19. @property (readwrite, retain) UIViewController *contentViewController;
  20. @end