FourSectionTableViewCell.h 875 B

123456789101112131415161718192021222324252627
  1. //
  2. // FourSectionTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/5.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class AcutionHistoryModel;
  10. @interface FourSectionTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet UIView *buttomLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  16. @property (weak, nonatomic) IBOutlet UIImageView *imgView;
  17. @property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
  18. @property (weak, nonatomic) IBOutlet UIView *lineView;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *rightViewConstraintW;
  20. - (void)creatCellWithModel:(AcutionHistoryModel *)model withRow:(int)row;
  21. @end