思路是在选中某个cell的时候立即取消选中,代码如下:
1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3 [tableView deselectRowAtIndexPath:indexPath animated:YES]; 4 5 // 其他 6 }
时间: 2024-10-08 02:27:48
思路是在选中某个cell的时候立即取消选中,代码如下:
1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3 [tableView deselectRowAtIndexPath:indexPath animated:YES]; 4 5 // 其他 6 }