| 123456789101112131415161718192021222324252627 |
- //
- // FourSectionTableViewCell.h
- // BuguLive
- //
- // Created by fanwe2014 on 16/8/5.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class AcutionHistoryModel;
- @interface FourSectionTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UIView *buttomLabel;
- @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *imgView;
- @property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
- @property (weak, nonatomic) IBOutlet UIView *lineView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *rightViewConstraintW;
- - (void)creatCellWithModel:(AcutionHistoryModel *)model withRow:(int)row;
- @end
|