我尝试为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
会取消突出显示,但是调用太晚了:/
当用户开始/停止向左/向右滑动时,我可以获得任何事件吗?
任何帮助都会很棒。 提前谢谢。