SortItemCell.h 473 B

1234567891011121314151617181920212223
  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. @end