// // ChatSearchFindbyFuJCell.m // smartRhino // // Created by armin on 2019/11/8. // Copyright © 2019 tederen. All rights reserved. // #import "ChatSearchFindbyFuJCell.h" @implementation ChatSearchFindbyFuJCell - (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 } + (CGFloat)configCell0Height{ return 144; } + (ChatSearchFindbyFuJCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{ static NSString *cellIdentifer = @"ChatSearchFindbyFuJCell0"; ChatSearchFindbyFuJCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer]; if (cell == nil) { cell = [[[NSBundle mainBundle] loadNibNamed:@"ChatSearchFindbyFuJCell" owner:nil options:nil] objectAtIndex:0]; } cell.selectionStyle = UITableViewCellSelectionStyleNone; cell.cell0ContentBgView.layer.masksToBounds = YES; cell.cell0ContentBgView.layer.cornerRadius = 4.0; return cell; } @end