| 123456789101112131415161718192021 |
- //
- // 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;
- - (instancetype)initWithTableOrigin:(CGPoint)origin;
- @end
|