12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- //
- // VLCLocalNetworkListCell.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 10.08.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCLocalNetworkListCell.h"
- @implementation VLCLocalNetworkListCell
- + (VLCLocalNetworkListCell *)cellWithReuseIdentifier:(NSString *)ident
- {
- NSArray *nibContentArray = [[NSBundle mainBundle] loadNibNamed:@"VLCLocalNetworkListCell" owner:nil options:nil];
- NSAssert([nibContentArray count] == 1, @"meh");
- NSAssert([[nibContentArray lastObject] isKindOfClass:[VLCLocalNetworkListCell class]], @"meh meh");
- VLCLocalNetworkListCell *cell = (VLCLocalNetworkListCell *)[nibContentArray lastObject];
- return cell;
- }
- - (void)awakeFromNib
- {
- self.titleLabel.text = @"";
- self.subtitleLabel.text = @"";
- self.thumbnailView.contentMode = UIViewContentModeScaleAspectFit;
- self.downloadButton.hidden = YES;
- }
- - (void)setIsDirectory:(BOOL)isDirectory
- {
- self.titleLabel.hidden = self.subtitleLabel.hidden = isDirectory;
- self.folderTitleLabel.hidden = !isDirectory;
- _isDirectory = isDirectory;
- }
- - (void)setTitle:(NSString *)title
- {
- BOOL isDir = self.isDirectory;
- self.folderTitleLabel.text = self.titleLabel.text = title;
- self.titleLabel.hidden = self.subtitleLabel.hidden = isDir;
- self.folderTitleLabel.hidden = !isDir;
- _title = title;
- }
- - (void)setSubtitle:(NSString *)subtitle
- {
- self.subtitleLabel.text = subtitle;
- }
- - (void)setIcon:(UIImage *)icon
- {
- self.thumbnailView.image = icon;
- }
- - (void)setIsDownloadable:(BOOL)isDownloadable
- {
- self.downloadButton.hidden = !isDownloadable;
- }
- - (void)triggerDownload:(id)sender
- {
- if ([self.delegate respondsToSelector:@selector(triggerDownloadForCell:)])
- [self.delegate triggerDownloadForCell:self];
- }
- + (CGFloat)heightOfCell
- {
- if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
- return 80.;
- return 68.;
- }
- @end
|