// // PayAlertCell.h // smartRhino // // Created by niuzhen on 2020/4/30. // Copyright © 2020 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface PayAlertCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *moneyL; @property (weak, nonatomic) IBOutlet UILabel *subL; @property (weak, nonatomic) IBOutlet UIButton *buyBtn; @property (weak, nonatomic) IBOutlet UIButton *fristBtn; + (CGFloat)configCellHeight; + (PayAlertCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END