12345678910111213141516171819202122 |
- //
- // MyAccountCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/29.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyAccountCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *moneyL;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- + (CGFloat)configCellHeight;
- + (MyAccountCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|