PayAlertCell.h 592 B

12345678910111213141516171819202122232425
  1. //
  2. // PayAlertCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/30.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PayAlertCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *moneyL;
  12. @property (weak, nonatomic) IBOutlet UILabel *subL;
  13. @property (weak, nonatomic) IBOutlet UIButton *buyBtn;
  14. @property (weak, nonatomic) IBOutlet UIButton *fristBtn;
  15. + (CGFloat)configCellHeight;
  16. + (PayAlertCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  17. @end
  18. NS_ASSUME_NONNULL_END