/***************************************************************************** * VLCSidebarController.h * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Author: Felix Paul Kühne * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @interface VLCSidebarController : NSObject + (instancetype)sharedInstance; - (void)hideSidebar; - (void)toggleSidebar; - (void)selectRowAtIndexPath:(NSIndexPath *)indexPath scrollPosition:(UITableViewScrollPosition)scrollPosition; @property (readonly) UIViewController *fullViewController; @property (readwrite, retain) UIViewController *contentViewController; @end