VLCOpenNetworkStreamViewController.h 749 B

1234567891011121314151617181920212223
  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
  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. @property (strong, nonatomic) IBOutlet UILabel *whatToOpenHelpLabel;
  17. - (IBAction)openButtonAction:(id)sender;
  18. @end