// // WZSendInfoCell.m // smartRhino // // Created by taidi on 2020/1/1. // Copyright © 2020 tederen. All rights reserved. // #import "WZSendInfoCell.h" @implementation WZSendInfoCell + (WZSendInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{ static NSString *cellIdentifer = @"WZSendInfoCell"; WZSendInfoCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer]; if (cell == nil || !cell) { cell = [[[NSBundle mainBundle] loadNibNamed:@"WZSendInfoCell" owner:nil options:nil] objectAtIndex:0]; } cell.selectionStyle = UITableViewCellSelectionStyleNone; [cell.selectbuton setCurrentButtonHotSize:CGSizeZero]; return cell; } - (void)awakeFromNib { [super awakeFromNib]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; } @end