VLCTrackSelectorTableViewCell.m 916 B

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * VLCTrackSelectorTableViewCell.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCTrackSelectorTableViewCell.h"
  13. @implementation VLCTrackSelectorTableViewCell
  14. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  15. {
  16. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  17. if (!self)
  18. return self;
  19. self.backgroundColor = [UIColor clearColor];
  20. self.textLabel.textColor = [UIColor VLCLightTextColor];
  21. return self;
  22. }
  23. @end