VLCDropboxTableViewController.h 514 B

123456789101112131415161718192021
  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. #import "VLCDropboxController.h"
  9. @interface VLCDropboxTableViewController : UITableViewController <VLCDropboxController>
  10. @property (nonatomic, strong) IBOutlet UIView *loginToDropboxView;
  11. @property (nonatomic, strong) IBOutlet UIButton *loginToDropboxButton;
  12. - (IBAction)loginToDropboxAction:(id)sender;
  13. - (void)updateViewAfterSessionChange;
  14. @end