1234567891011121314151617181920212223242526272829 |
- /*****************************************************************************
- * VLCSidebarViewCell.m
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCSidebarViewCell.h"
- @implementation VLCSidebarViewCell
- - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
- {
- if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
- self.clipsToBounds = YES;
- self.backgroundColor = [UIColor clearColor];
- self.selectionStyle = UITableViewCellSelectionStyleNone;
- self.textLabel.textColor = [UIColor whiteColor];
- }
- return self;
- }
- @end
|