BillCell.h 544 B

12345678910111213141516171819202122
  1. //
  2. // BillCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/6.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BillCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *priceLb;
  12. @property (weak, nonatomic) IBOutlet UILabel *timeLb;
  13. @property (weak, nonatomic) IBOutlet UILabel *statusLb;
  14. @property (strong, nonatomic)NSDictionary *infoDic;
  15. +(BillCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
  16. @end
  17. NS_ASSUME_NONNULL_END