Bladeren bron

Add missing calls to super

(cherry picked from commit 04cba7242cd008f155107c3894ab72e6dfbdfc2e)
Felix Paul Kühne 9 jaren geleden
bovenliggende
commit
edfbdd42b7

+ 4 - 0
Sources/LocalNetworkConnectivity/VLCNetworkListCell.m

@@ -37,6 +37,7 @@
     self.folderTitleLabel.highlightedTextColor = [UIColor blackColor];
     self.subtitleLabel.highlightedTextColor = [UIColor blackColor];
     self.statusLabel.highlightedTextColor = [UIColor blackColor];
+    [super awakeFromNib];
 }
 
 - (void)setTitleLabelCentered:(BOOL)titleLabelCentered
@@ -114,6 +115,9 @@
 
 
 @implementation VLCNetworkListCell (CellConfigurator)
+
+@dynamic couldBeAudioOnlyMedia;
+
 - (void)setThumbnailImage:(UIImage *)thumbnailImage {
     self.icon = thumbnailImage;
 }

+ 1 - 0
Sources/VLCPlaylistCollectionViewCell.m

@@ -38,6 +38,7 @@
     _checkboxEmptyImage = [UIImage imageNamed:@"checkboxEmpty"];
     _checkboxImage = [UIImage imageNamed:@"checkbox"];
     self.metaDataLabel.hidden = YES;
+    [super awakeFromNib];
 }
 
 - (void)setEditing:(BOOL)editing animated:(BOOL)animated

+ 2 - 0
Sources/VLCSlider.m

@@ -19,6 +19,7 @@
     self.accessibilityLabel = NSLocalizedString(@"PLAYBACK_POSITION", nil);
     self.isAccessibilityElement = YES;
     [self setThumbImage:[UIImage imageNamed:@"sliderKnob"] forState:UIControlStateNormal];
+    [super awakeFromNib];
 }
 
 @end
@@ -37,6 +38,7 @@
 - (void)awakeFromNib
 {
     [self setThumbImage:[UIImage imageNamed:@"sliderKnob"] forState:UIControlStateNormal];
+    [super awakeFromNib];
 }
 
 @end

+ 2 - 0
Sources/VLCTimeNavigationTitleView.m

@@ -40,6 +40,8 @@
     }
 
     [self setNeedsLayout];
+
+    [super awakeFromNib];
 }
 
 - (void)layoutSubviews