TwoSectionTableViewCell.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // TwoSectionTableViewCell.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. @interface TwoSectionTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *startPriceLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *addPriceLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *depositLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *cycleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *mostTimeLabel;
  15. @property (weak, nonatomic) IBOutlet UIView *lineView;
  16. @property (weak, nonatomic) IBOutlet UIView *lineView2;
  17. @property (weak, nonatomic) IBOutlet UIView *lineView3;
  18. @property (nonatomic, strong) UIView *view1;
  19. @property (nonatomic, strong) UIView *view2;
  20. @property (nonatomic, strong) UIView *view3;
  21. @property (nonatomic, strong) UIImageView *imgView1;
  22. @property (nonatomic, strong) UIImageView *imgView2;
  23. @property (nonatomic, strong) UIImageView *imgView3;
  24. @property (nonatomic, strong) UILabel *priceLabel1;
  25. @property (nonatomic, strong) UILabel *priceLabel2;
  26. @property (nonatomic, strong) UILabel *priceLabel13;
  27. - (void)creatCellWithArray:(NSMutableArray *)array;
  28. @end