VLCOpenNetworkStreamTVViewController.h 944 B

123456789101112131415161718192021222324
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. @interface VLCOpenNetworkStreamTVViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
  13. @property (readwrite, nonatomic, weak) IBOutlet UILabel *titleLabel;
  14. @property (readwrite, nonatomic, weak) IBOutlet UILabel *noURLsToShowLabel;
  15. @property (readwrite, nonatomic, weak) IBOutlet UITextField *playURLField;
  16. @property (readwrite, nonatomic, weak) IBOutlet UITableView *previouslyPlayedStreamsTableView;
  17. - (IBAction)URLEnteredInField:(id)sender;
  18. @end