1234567891011121314151617181920212223242526 |
- /*****************************************************************************
- * VLCLocalNetworkListViewController
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015-2017 VideoLAN. All rights reserved.
- * $Id$
- *
- * Author: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- @class VLCNetworkListCell;
- extern NSString *VLCNetworkListCellIdentifier;
- @interface VLCNetworkListViewController : UIViewController
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) UISearchController *searchController;
- - (IBAction)playAllAction:(id)sender;
- - (void)tableView:(UITableView *)tableView willDisplayCell:(VLCNetworkListCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
- @end
|