// // NewRowUserCell.m // smartRhino // // Created by niuzhen on 2019/12/14. // Copyright © 2019 tederen. All rights reserved. // #import "NewRowUserCell.h" @implementation NewRowUserCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } + (NewRowUserCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{ static NSString *cellIdentifer = @"NewRowUserCell"; NewRowUserCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer]; if (cell == nil) { cell = [[[NSBundle mainBundle] loadNibNamed:@"NewRowUserCell" owner:nil options:nil] objectAtIndex:0]; } cell.selectionStyle = UITableViewCellSelectionStyleNone; return cell; } @end