12345678910111213141516171819202122232425 |
- //
- // AccountDetailCell.h
- // jiaPei
- //
- // Created by apple on 16/8/23.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- //这个cell的高度为80
- #import <UIKit/UIKit.h>
- @interface AccountDetailCell : UITableViewCell
- @property (nonatomic, retain) UILabel *titleLabel;
- @property (nonatomic, retain) UILabel *stateLabel;
- @property (nonatomic, retain) UILabel *dateLabel;
- @property (nonatomic, retain) UILabel *moneyLabel;
- @property (nonatomic, retain) NSDictionary *dataDic;
- @end
|