// // FKCategoryResCell.m // FirstLink // // Created by jack on 16/5/28. // Copyright © 2016年 FirstLink. All rights reserved. // #import "FKPreferResCell.h" @implementation FKPreferResCell - (instancetype)initWithFrame:(CGRect)frame{ if (self = [super initWithFrame:frame]) { [self addAllSubviews]; } return self; } - (void)addAllSubviews{ [self.contentView addSubview:self.titleLabel]; [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.edges.insets(UIEdgeInsetsZero); }]; } - (UILabel *)titleLabel{ if (_titleLabel == nil) { _titleLabel = [[UILabel alloc]init]; _titleLabel.backgroundColor = UIColorFromRGB(0xe2e2e2); _titleLabel.font = [UIFont systemFontOfSize:16]; _titleLabel.layer.cornerRadius = 3.0f; _titleLabel.layer.masksToBounds = YES; _titleLabel.textAlignment = NSTextAlignmentCenter; } return _titleLabel; } @end