VLCDropboxTableViewController.h 642 B

123456789101112131415161718192021222324
  1. //
  2. // VLCDropboxTableViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 24.05.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 "VLCDropboxController.h"
  11. @interface VLCDropboxTableViewController : UIViewController <VLCDropboxController>
  12. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  13. @property (nonatomic, strong) IBOutlet UIView *loginToDropboxView;
  14. @property (nonatomic, strong) IBOutlet UIButton *loginToDropboxButton;
  15. - (IBAction)loginToDropboxAction:(id)sender;
  16. - (void)updateViewAfterSessionChange;
  17. @end