VLCOpenNetworkStreamViewController.h 725 B

12345678910111213141516171819202122
  1. //
  2. // VLCOpenNetworkStreamViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 16.06.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. @interface VLCOpenNetworkStreamViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
  11. @property (strong, nonatomic) IBOutlet UITextField *urlField;
  12. @property (strong, nonatomic) IBOutlet UIButton *openButton;
  13. @property (strong, nonatomic) IBOutlet UISwitch *privateToggleSwitch;
  14. @property (strong, nonatomic) IBOutlet UILabel *privateModeLabel;
  15. @property (strong, nonatomic) IBOutlet UITableView *historyTableView;
  16. - (IBAction)openButtonAction:(id)sender;
  17. @end