| 1234567891011121314151617181920212223242526272829 |
- //
- // RADetailActionSelectionViewController+TableDelegate.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RADetailActionSelectionViewController+TableDelegate.h"
- #import "RADetailActionSelectionModel.h"
- @implementation RADetailActionSelectionViewController (TableDelegate)
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return 44.0f;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
- [self dismissViewControllerAnimated:NO completion:^{
-
- if (self.delegate && [self.delegate respondsToSelector:@selector(detailSelectAction:)]) {
- RADetailActionSelectionModel *model = [self.actions objectAtIndex:indexPath.row];
- [self.delegate detailSelectAction:model];
- }
- }];
- }
- @end
|