ios – 滑动单元格和水平滚动之间的冲突

目前我有一个水平卷轴,里面有几页.其中一些页面具有包含滑动单元格的表格.

The idea is to be able to swipe the cell and when finished this swipe, somehow activate the scroll swipe to move to the next page. Something like this:

《ios – 滑动单元格和水平滚动之间的冲突》

但是当我尝试时,它会发生冲突并且同时激活2个滚动.也就是说,当单元格移动并显示按钮时,滚动也开始移动到另一页面.

对于滑动单元格我正在使用SWTableViewCell,因为本机功能如下:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
    }
}

甚至没有激活,他们完全忽略了单元格的滑动,只有滑动滚动才被激活.

谢谢,任何帮助将不胜感激.

最佳答案 试试这个

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
    return TRUE;
}
点赞