// // SortItemCell.h // iSales-NPD // // Created by Jack on 16/9/5. // Copyright © 2016年 United Software Applications, Inc. All rights reserved. // #import #define CellIdentifier @"sortItemCell" @interface SortItemCell : UITableViewCell @property (nonatomic,strong) UILabel *sortTitleLabel; @property (nonatomic,copy) NSString *sortTitle; @property (nonatomic,assign) BOOL selectedSort; @property (nonatomic,assign) NSInteger sortIndex; @property (nonatomic,strong) NSDictionary *sortItem; @end