1234567891011121314151617181920212223242526 |
- /*****************************************************************************
- * VLCCloudStorageTableViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Fabio Ritrovato <sephiroth87 # videolan.org>
- * Carola Nitz <nitz.carola # googlemail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- @interface VLCCloudStorageTableViewController : UIViewController
- @property (nonatomic, strong) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) IBOutlet UIView *loginToCloudStorageView;
- @property (nonatomic, strong) IBOutlet UIButton *loginButton;
- @property (nonatomic, strong) IBOutlet UIImageView *cloudStorageLogo;
- - (IBAction)loginAction:(id)sender;
- - (void)updateViewAfterSessionChange;
- @end
|