Sin descripción

FKRecoLimitBuyCell.h 645B

12345678910111213141516171819202122232425262728
  1. //
  2. // FKRecommendlimitBuyCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/11/30.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKRecommendBaseCell.h"
  10. @interface FKLimitBuySingleCell : UICollectionViewCell
  11. @property (nonatomic, strong) UIImageView *imageView;
  12. @property (nonatomic, strong) UIImageView *statusImageView;
  13. @property (nonatomic, strong) UILabel *priceLabel;
  14. @property (nonatomic, strong) UILabel *referPriceLabel;
  15. @property (nonatomic, strong) UIButton *buyButton;
  16. @end
  17. @interface FKRecoLimitBuyCell : FKRecommendBaseCell
  18. + (CGFloat)height:(CGFloat)itemCount;
  19. @end