RAOrderEditViewController.h 739 B

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