SortItemViewController.h 449 B

123456789101112131415161718192021
  1. //
  2. // SortItemViewController.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. typedef void(^sortRequestBlock)(int sort);
  10. @interface SortItemViewController : UIViewController
  11. @property (nonatomic,copy) sortRequestBlock sortBlock;
  12. @property (nonatomic,assign) int sortIndex;
  13. - (instancetype)initWithTableOrigin:(CGPoint)origin;
  14. @end