| 1234567891011121314151617181920212223 |
- //
- // SortItemCell.h
- // iSales-NPD
- //
- // Created by Jack on 16/9/5.
- // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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;
- @end
|