| 1234567891011121314151617 |
- //
- // TopCellItem.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-1.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "StrikethroughLabel.h"
- @interface TopCellItem : UICollectionViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *cellImage;
- @property (strong, nonatomic) IBOutlet UILabel *cellDescription;
- @property (strong, nonatomic) IBOutlet StrikethroughLabel *oldPrice;
- @property (strong, nonatomic) IBOutlet UILabel *Price;
- @end
|