首先粗心的小伙伴注意了,先看一看你的cell点击响应方法是否写成了didDeselectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"点击走你+点击走你+点击走你点击走你");
}
那么改为didSelectRowAtIndexPath即可
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath{
NSLog(@"点击走你+点击走你+点击走你点击走你");
}