RAHomeViewController.h 726 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RAHomeViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/1.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RABaseViewController.h"
  9. @class RAHomeOrderModel;
  10. @interface RAHomeViewController : RABaseViewController
  11. @property (strong, nonatomic) IBOutlet UITableView *homeOrderTableView;
  12. @property (nonatomic,copy) NSString *currentOrderID;
  13. #pragma mark - Getter
  14. - (NSUInteger)orderSectionCount;
  15. - (NSUInteger)orderCountForSection:(NSInteger)section;
  16. - (RAHomeOrderModel *)orderModelForIndexPath:(NSIndexPath *)indexPath;
  17. - (NSString *)titleForSection:(NSInteger)section;
  18. #pragma mark - Controller Action
  19. - (void)pushDetailViewControllerForModel:(RAHomeOrderModel *)model;
  20. @end