// // MyAccountCell.m // smartRhino // // Created by niuzhen on 2020/4/29. // Copyright © 2020 tederen. All rights reserved. // #import "MyAccountCell.h" @implementation MyAccountCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } + (CGFloat)configCellHeight{ return 98; } + (MyAccountCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{ static NSString *cellIdentifer = @"MyAccountCell"; MyAccountCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer]; if (cell == nil || !cell) { cell = [[[NSBundle mainBundle] loadNibNamed:@"MyAccountCell" owner:nil options:nil] objectAtIndex:0]; } 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