RAHomeViewController.h 991 B

123456789101112131415161718192021222324252627282930313233343536
  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. @property (nonatomic,copy) NSString *gotoDetailID;
  14. @property (nonatomic,assign) NSInteger gotoDetailType;
  15. @property (nonatomic,copy) NSString *gotoDetailType2;
  16. #pragma mark - Getter
  17. - (NSUInteger)orderSectionCount;
  18. - (NSUInteger)orderCountForSection:(NSInteger)section;
  19. - (RAHomeOrderModel *)orderModelForIndexPath:(NSIndexPath *)indexPath;
  20. - (NSString *)titleForSection:(NSInteger)section;
  21. - (BOOL)hasMoreOrderForSection:(NSInteger)section;
  22. #pragma mark - Controller Action
  23. - (void)pushDetailViewControllerForModel:(RAHomeOrderModel *)model;
  24. - (void)showMoreOrderForSection:(NSInteger)section;
  25. @end