// // PersonalCertificationTableViewCell.m // ChinaTheoryNetwork // // Created by 张毅成 on 2019/1/29. // Copyright © 2019 张毅成. All rights reserved. // #import "PersonalCertificationTableViewCell.h" @implementation PersonalCertificationTableViewCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } + (instancetype)cellWithTableView:(UITableView *)tableView { static NSString *ID = @"PersonalCertificationTableViewCell"; PersonalCertificationTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID]; if (cell == nil) { cell = [[[NSBundle mainBundle] loadNibNamed:ID owner:self options:nil] firstObject]; } cell.selectionStyle = UITableViewCellSelectionStyleNone; return cell; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end