| 12345678910111213141516 |
- //
- // EditSortVCViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/1/29.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OrderListDelegate.h"
- @interface EditSortVC : BaseViewController
- @property (nonatomic, strong) NSMutableArray *topDataList;
- @property (nonatomic, strong) NSMutableArray *bottomDataList;
- @property(nonatomic,strong)UINavigationController *orderNav;
- @property(nonatomic,weak) id<OrderListDelegate> refreshDelegate;
- @end
|