我尝试进行行操作,UITableViewCell
但滑动时突出显示有问题。用户并没有真正选择单元格,他只是向左滑动。
我的shouldHighlightRowAtIndexPath
样子是这样的:
- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath {
// Sets the inner rectangle to the selected color
[cell setCellColorWithString:COLORS_ARRAY[4]];
return YES;
}
如果这是正确的做法,我editActionsForRowAtIndexPath
会取消突出显示,但它调用得太晚了:/
当用户开始/停止向左/向右滑动时,我可以得到任何事件吗?
任何帮助都会很棒。提前致谢。