SortItemCell.h 527 B

12345678910111213141516171819202122232425
  1. //
  2. // SortItemCell.h
  3. // iSales-NPD
  4. //
  5. // Created by Jack on 16/9/5.
  6. // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define CellIdentifier @"sortItemCell"
  10. @interface SortItemCell : UITableViewCell
  11. @property (nonatomic,strong) UILabel *sortTitleLabel;
  12. @property (nonatomic,copy) NSString *sortTitle;
  13. @property (nonatomic,assign) BOOL selectedSort;
  14. @property (nonatomic,assign) NSInteger sortIndex;
  15. @property (nonatomic,strong) NSDictionary *sortItem;
  16. @end