Working on and iOS app I currently have set up of:
RootViewController hooked up to a UITableViewController via
[self addChildViewController:tableVC];
With the tableVC.view as a subview of the rootViewControllers view. The RootVC then has a UIPanGestureRecognizer which is used to animate a pan left showing the table.
This all works fine and the table is great as a static view, however when you try to fire
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
By tapping on a cell, it is never called. I have already checked if the taps are being accidentally registered by the gesture recogniser but they aren't.
Do I need to somehow tell the RootVC that when the tableView is on screen to send to taps to the child UITableViewController?