// // FKCirDetailNoCommentCell.m // FirstLink // // Created by jack on 16/6/15. // Copyright © 2016年 FirstLink. All rights reserved. // #import "FKCirDetailNoCommentCell.h" @implementation FKCirDetailNoCommentCell - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{ if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { [self addAllSubviews]; self.selectionStyle = UITableViewCellSelectionStyleNone; self.contentView.backgroundColor = [UIColor whiteColor]; } return self; } - (void)addAllSubviews{ UILabel *titleLabel = [[UILabel alloc]init]; titleLabel.font = [UIFont systemFontOfSize:14]; titleLabel.textColor = UIColorFromRGB(0x9b9b9b); titleLabel.text = @"还没有评论哦\n快来抢沙发"; titleLabel.textAlignment = NSTextAlignmentCenter; titleLabel.numberOfLines = 0; [self.contentView addSubview:titleLabel]; [titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.center.equalTo(self.contentView); }]; } @end