I currently have a horizontal scroll that has multiple pages. Some of these pages have numbered tables.
The idea is to be able to swipe through a cell, and when it finishes this scroll, activate the scroll scroll to go to the next page. Something like that:

But when I try, it arises in conflict and 2 scrolls are activated at the same time. That is, while the cell moves and shows the button, the scroll also starts moving to another page.
For the swipe cell, I use SWTableViewCellbecause the built-in function is similar to the following:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
}
}
Not even activated, they completely ignore the cell swipe and only activate scrolling.
, .