1234567891011121314151617181920212223242526 |
- //
- // FKVipCollectionCell.h
- // FirstLink
- //
- // Created by jack on 15/9/14.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKVipCollectionCell : UICollectionViewCell
- @property (nonatomic, strong) TTTAttributedLabel *priceLabel;
- @property (nonatomic, strong) UIImageView *imageView;
- @property (nonatomic, strong) UIImageView *markImageView;
- @property (nonatomic, strong) UILabel *markLabel;
- @property (nonatomic, strong) UIImageView *statusImageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *sourceLabel;
- @property (nonatomic, strong) UIView *coverView;
- @property (nonatomic, assign) CGFloat cutPrice;
- - (void)setProductStatus:(NSString *)status;
- @end
|