| 12345678910111213141516171819 |
- //
- // CategoryCellSmall.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-3.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "StrikethroughLabel.h"
- @interface CategoryCellSmall : UICollectionViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *cellImageView;
- @property (strong, nonatomic) IBOutlet UILabel *cellDescription;
- @property (strong, nonatomic) IBOutlet StrikethroughLabel *oldPrice;
- @property (strong, nonatomic) IBOutlet UILabel *Price;
- @property (nonatomic,copy) NSString *imageName;///<图片标识
- @end
|