| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // RAHomeViewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/1.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RABaseViewController.h"
- @class RAHomeOrderModel;
- @interface RAHomeViewController : RABaseViewController
- @property (strong, nonatomic) IBOutlet UITableView *homeOrderTableView;
- @property (nonatomic,copy) NSString *currentOrderID;
- @property (nonatomic,copy) NSString *gotoDetailID;
- @property (nonatomic,assign) NSInteger gotoDetailType;
- @property (nonatomic,copy) NSString *gotoDetailType2;
- #pragma mark - Getter
- - (NSUInteger)orderSectionCount;
- - (NSUInteger)orderCountForSection:(NSInteger)section;
- - (RAHomeOrderModel *)orderModelForIndexPath:(NSIndexPath *)indexPath;
- - (NSString *)titleForSection:(NSInteger)section;
- - (BOOL)hasMoreOrderForSection:(NSInteger)section;
- #pragma mark - Controller Action
- - (void)pushDetailViewControllerForModel:(RAHomeOrderModel *)model;
- - (void)showMoreOrderForSection:(NSInteger)section;
- @end
|