| 1234567891011121314151617181920212223 |
- //
- // SortItemViewController.h
- // iSales-NPD
- //
- // Created by Jack on 16/9/5.
- // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^sortRequestBlock)(int sort);
- @interface SortItemViewController : UIViewController
- @property (nonatomic,copy) sortRequestBlock sortBlock;
- @property (nonatomic,assign) int sortIndex;
- @property (nonatomic,strong) NSArray <NSDictionary *> *sortData;
- - (instancetype)initWithTableOrigin:(CGPoint)origin;
- @end
|