Remove cell style declaration in subclasses

This commit is contained in:
Roman Efimov
2013-08-02 09:41:15 -05:00
parent 66c9ba3ea0
commit c76dcd5ec2
2 changed files with 0 additions and 2 deletions

View File

@@ -39,7 +39,6 @@
{
[super cellDidLoad];
self.textLabel.backgroundColor = [UIColor clearColor];
self.selectionStyle = self.tableViewManager.style.defaultCellSelectionStyle;
_textField = [[UITextField alloc] initWithFrame:CGRectNull];
_textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;

View File

@@ -35,7 +35,6 @@
{
[super cellDidLoad];
self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
self.selectionStyle = self.tableViewManager.style.defaultCellSelectionStyle;
_valueLabel = [[UILabel alloc] initWithFrame:CGRectNull];
_valueLabel.font = [UIFont systemFontOfSize:17];