RAOrderEditViewController.h 689 B

12345678910111213141516171819202122232425
  1. //
  2. // RAOrderEditViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/4.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RABaseViewController.h"
  9. @class RAEditBaseModel;
  10. @interface RAOrderEditViewController : RABaseViewController
  11. @property (nonatomic,copy) NSString *orderID;
  12. @property (nonatomic,assign) NSInteger actionID;
  13. @property (nonatomic,strong) NSIndexPath *editingIndexPath;
  14. - (NSUInteger)editSectionCount;
  15. - (NSInteger)itemCountForSection:(NSInteger)section;
  16. - (NSString *)titleForSection:(NSInteger)section;
  17. - (RAEditBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
  18. - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;
  19. @end