我有一个自定义的tableViewCell.我想通过突出显示来指示用户触摸.单元格选择样式为UITableViewCellSelectionStyleBlue.在父控制器中我设置了self.cleaRSSelectionOnViewWillAppear = YES.
我应该很好去不.选择仍然坚持到细胞.我想要的是选择指示仅在触摸的持续时间.外观应立即恢复到未选择的外观.
我该如何做?
干杯,
道格
解决方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [tableView deselectRowAtIndexPath:indexPath animated:YES]; }