| 1234567891011121314151617181920 |
- //
- // CategoryCellNPD.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 7/23/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CategoryCellNPD : UICollectionViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *cellImageView;
- @property (strong, nonatomic) IBOutlet UILabel *nameLabel;
- @property (strong, nonatomic) IBOutlet UILabel *modelNoLabel;
- @property (strong, nonatomic) IBOutlet UIImageView *checkImageView;
- @property (strong, nonatomic) IBOutlet UIImageView *mark_order;
- @property (strong, nonatomic) IBOutlet UIImageView *mark_closeout;
- @property (strong, nonatomic) IBOutlet UIImageView *mark_wish;
- @end
|