| 12345678910111213141516171819202122 |
- //
- // BillCell.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/2/6.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BillCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *priceLb;
- @property (weak, nonatomic) IBOutlet UILabel *timeLb;
- @property (weak, nonatomic) IBOutlet UILabel *statusLb;
- @property (strong, nonatomic)NSDictionary *infoDic;
- +(BillCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|