Nenhuma Descrição

FKVipCollectionCell.h 833B

1234567891011121314151617181920212223242526
  1. //
  2. // FKVipCollectionCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/14.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKVipCollectionCell : UICollectionViewCell
  10. @property (nonatomic, strong) TTTAttributedLabel *priceLabel;
  11. @property (nonatomic, strong) UIImageView *imageView;
  12. @property (nonatomic, strong) UIImageView *markImageView;
  13. @property (nonatomic, strong) UILabel *markLabel;
  14. @property (nonatomic, strong) UIImageView *statusImageView;
  15. @property (nonatomic, strong) UILabel *titleLabel;
  16. @property (nonatomic, strong) UILabel *sourceLabel;
  17. @property (nonatomic, strong) UIView *coverView;
  18. @property (nonatomic, assign) CGFloat cutPrice;
  19. - (void)setProductStatus:(NSString *)status;
  20. @end