34 lines
831 B
Objective-C
34 lines
831 B
Objective-C
//
|
|
// CustomModeSetCell.m
|
|
// Ifish
|
|
//
|
|
// Created by Minghao Xue on 2018/4/22.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "CustomModeSetCell.h"
|
|
|
|
@implementation CustomModeSetCell
|
|
|
|
- (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.customModeTitleLbl.font = [UIFont systemFontOfSize:15];
|
|
[self.customModeTitleLbl sizeToFit];
|
|
|
|
[self setSelectedBackgroundView:clearView];
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|