CategoryCellSmall.h 602 B

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