VLCMenuTableViewController.h 737 B

1234567891011121314151617181920212223242526
  1. //
  2. // VLCMenuTableViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 10.08.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 <UIKit/UIKit.h>
  11. @class VLCSettingsController;
  12. @class IASKAppSettingsViewController;
  13. @interface VLCMenuTableViewController : UIViewController
  14. @property (strong, nonatomic) IASKAppSettingsViewController *settingsViewController;
  15. @property (strong, nonatomic) VLCSettingsController *settingsController;
  16. @property (nonatomic, strong) UITableView *tableView;
  17. - (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;
  18. @end