VLCLocalNetworkServerTVCell.m 421 B

1234567891011121314151617181920
  1. //
  2. // VLCLocalNetworkServerTVCell.m
  3. // VLC for iOS
  4. //
  5. // Created by Tobias Conradi on 27.10.15.
  6. // Copyright © 2015 VideoLAN. All rights reserved.
  7. //
  8. #import "VLCLocalNetworkServerTVCell.h"
  9. NSString *const VLCLocalServerTVCell = @"localServerTVCell";
  10. @implementation VLCLocalNetworkServerTVCell
  11. - (void)awakeFromNib {
  12. [super awakeFromNib];
  13. self.imageView.tintColor = [UIColor VLCOrangeTintColor];
  14. }
  15. @end