RAOrderEditViewController.h 788 B

123456789101112131415161718192021222324252627
  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,copy) NSString *actionTitle;
  14. @property (nonatomic,copy) NSString *orderType2;
  15. @property (nonatomic,strong) NSIndexPath *editingIndexPath;
  16. - (NSUInteger)editSectionCount;
  17. - (NSInteger)itemCountForSection:(NSInteger)section;
  18. - (NSString *)titleForSection:(NSInteger)section;
  19. - (RAEditBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
  20. - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;
  21. @end