I have a UIPageViewController that has a large table in each content view. When I start swiping left or right outside of the UITableView the page turn effect is triggered. When I swipe left or right within the bounds of the UITableView the UIPageView controller doesn't seem to get the swipes.
I have turned off editing of table rows using:
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return NO;
}
It still seems the UITableView is stealing and holding onto the left and right swipes.