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