VLCSidebarViewCell.m 954 B

1234567891011121314151617181920212223242526272829
  1. /*****************************************************************************
  2. * VLCSidebarViewCell.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2015 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 "VLCSidebarViewCell.h"
  13. @implementation VLCSidebarViewCell
  14. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  15. {
  16. if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
  17. self.clipsToBounds = YES;
  18. self.backgroundColor = [UIColor clearColor];
  19. self.selectionStyle = UITableViewCellSelectionStyleNone;
  20. self.textLabel.textColor = [UIColor whiteColor];
  21. }
  22. return self;
  23. }
  24. @end