// // YOUPAILCCityCell.m // LiveChat // // Created by 张灿 on 2018/4/15. // Copyright © 2018年 caicai. All rights reserved. // #import "YOUPAILCCityCell.h" @implementation YOUPAILCCityCell - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{ if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { self.selectionStyle = UITableViewCellSelectionStyleNone; self.backgroundColor = [UIColor clearColor]; [self youpaifinitUI]; } return self; } - (void)youpaifinitUI{ self.youpaipcityLabel = [[UILabel alloc]init]; self.youpaipcityLabel.font = LCFont14; self.youpaipcityLabel.textColor = LZ273145Color; self.youpaipcityLabel.textAlignment = NSTextAlignmentLeft; [self.contentView addSubview:self.youpaipcityLabel]; [self.youpaipcityLabel makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.mas_left).offset(15); make.top.equalTo(@14); make.height.equalTo(@20); }]; } @end