// // KDPDrawerList.m // KuDianProject // // Created by 学丽 on 2019/7/8. // Copyright © 2019 KDP. All rights reserved. // #import "KDPDrawerListCell.h" @implementation KDPDrawerListCell -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self=[super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { self.iconImg=[[UIImageView alloc]initWithFrame:CGRectMake(27, 16, 18, 17)]; self.iconImg.backgroundColor=[UIColor colorWithHexString:LineColor]; [self addSubview:self.iconImg]; self.titleLabel=[[UILabel alloc]initWithFrame:CGRectMake(self.iconImg.right+10, 0, 100, 50)]; self.titleLabel.text=@"名称"; self.titleLabel.font=[UIFont systemFontOfSize:16]; self.titleLabel.textColor=[UIColor colorWithHexString:fontColor]; [self addSubview:self.titleLabel]; } return self; } @end