12345678910111213141516171819202122232425262728 |
- //
- // FKRecommendlimitBuyCell.h
- // FirstLink
- //
- // Created by jack on 15/11/30.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKRecommendBaseCell.h"
- @interface FKLimitBuySingleCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *imageView;
- @property (nonatomic, strong) UIImageView *statusImageView;
- @property (nonatomic, strong) UILabel *priceLabel;
- @property (nonatomic, strong) UILabel *referPriceLabel;
- @property (nonatomic, strong) UIButton *buyButton;
- @end
- @interface FKRecoLimitBuyCell : FKRecommendBaseCell
- + (CGFloat)height:(CGFloat)itemCount;
- @end
|