// // ChangeWaterCell.m // Ifish // // Created by imac on 16/3/15. // Copyright © 2016年 imac. All rights reserved. // #import "ChangeWaterCell.h" @implementation ChangeWaterCell - (void)awakeFromNib { // Initialization code self.backgroundColor=COLOR_MIAN; // if ([self.ChangeWaterSwitch isOn]) { // // self.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"firstSetCell"]]; // // }else{ // self.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"set_cellBack"]]; // } UIView *clearView=[[UIView alloc] init]; clearView.backgroundColor=[UIColor clearColor]; clearView.frame=self.bounds; [self setSelectedBackgroundView:clearView]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end