Initial commit

This commit is contained in:
ifish
2017-08-15 16:59:01 +08:00
commit bdc83e07ef
5766 changed files with 423223 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
//
// 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