OneSectionTableViewCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // OneSectionTableViewCell.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 OneSectionTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *backImgView;
  11. @property (weak, nonatomic) IBOutlet UIImageView *rightImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *hourLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *minuteLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *secLabel;
  17. @property (weak, nonatomic) IBOutlet UIImageView *auctionImgView;
  18. @property (weak, nonatomic) IBOutlet UILabel *auctionLabel;
  19. @property (weak, nonatomic) IBOutlet UIImageView *goldImgView;
  20. @property (weak, nonatomic) IBOutlet UILabel *nowPriceLabel;
  21. @property (weak, nonatomic) IBOutlet UILabel *remainTimeLabel;
  22. @property (weak, nonatomic) IBOutlet UILabel *maoHaoLabel;
  23. @property (weak, nonatomic) IBOutlet UILabel *maoHaoLabel2;
  24. @property (nonatomic, strong) UIButton *auctionButton;
  25. - (void)creatCellWithArray:(NSMutableArray *)array andStatue:(int)statue;
  26. @end