| 12345678910111213141516171819 |
- //
- // MyWalletDetailListCell.h
- // model
- //
- // Created by 杨键 on 2018/8/3.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MyWalletDetailListCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconImageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *timeLabel;
- @property (nonatomic, strong) UILabel *amountLabel;
- @property (nonatomic, strong) UIImageView *lineView;
- @end
|