ifish/Ifish/views/setViewCell/GuiDengViewCell.m

30 lines
692 B
Objective-C

//
// GuiDengViewCell.m
// Ifish
//
// Created by imac on 16/3/15.
// Copyright © 2016年 imac. All rights reserved.
//
#import "GuiDengViewCell.h"
@implementation GuiDengViewCell
- (void)awakeFromNib {
// Initialization code
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