// // RAOrderEditViewController.h // Apex And Drivers // // Created by Jack on 2018/6/4. // Copyright © 2018年 USAI. All rights reserved. // #import "RABaseViewController.h" @class RAEditBaseModel; @interface RAOrderEditViewController : RABaseViewController @property (nonatomic,copy) NSString *orderID; @property (nonatomic,assign) NSInteger actionID; @property (nonatomic,copy) NSString *actionTitle; @property (nonatomic,strong) NSIndexPath *editingIndexPath; - (NSUInteger)editSectionCount; - (NSInteger)itemCountForSection:(NSInteger)section; - (NSString *)titleForSection:(NSInteger)section; - (RAEditBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath; - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell; @end