| 12345678910111213141516171819202122232425 |
- //
- // RAHomeMoreViewController+TableDelegate.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/28.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RAHomeMoreViewController+TableDelegate.h"
- @implementation RAHomeMoreViewController (TableDelegate)
- #pragma mark - TableView Delegate
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return 120.0f;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
- RAHomeOrderModel *order = [self orderModelForIndexPath:indexPath];
- [self pushDetailViewControllerForModel:order];
- }
- @end
|