// // HomeScrCell.m // smartRhino // // Created by niuzhen on 2020/3/16. // Copyright © 2020 tederen. All rights reserved. // #import "HomeScrCell.h" @implementation HomeScrCell - (void)awakeFromNib { [super awakeFromNib]; self.titleL.backgroundColor = [UIColor whiteColor]; self.titleL.textAlignment = NSTextAlignmentCenter; [self.titleL setFont:[UIFont systemFontOfSize:15.f]]; } - (void)setDataWithTitle:(NSString *)text isSelect:(BOOL)isSelect { self.titleL.text = text; if (isSelect) { [self.titleL setTextColor:UIColorHex(1682DA)]; }else{ [self.titleL setTextColor:k6]; } } @end