|
@@ -12,6 +12,8 @@
|
|
|
|
|
|
@interface VLCLocalNetworkListCell : UITableViewCell
|
|
|
|
|
|
+@property (nonatomic, weak) id delegate;
|
|
|
+
|
|
|
@property (nonatomic, strong) IBOutlet UILabel *titleLabel;
|
|
|
@property (nonatomic, strong) IBOutlet UILabel *folderTitleLabel;
|
|
|
@property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
|
|
@@ -31,3 +33,9 @@
|
|
|
- (IBAction)triggerDownload:(id)sender;
|
|
|
|
|
|
@end
|
|
|
+
|
|
|
+@protocol VLCLocalNetworkListCell <NSObject>
|
|
|
+
|
|
|
+- (void)triggerDownloadForCell:(VLCLocalNetworkListCell *)cell;
|
|
|
+
|
|
|
+@end
|