首先粗心的小伙伴注意了舌劳,先看一看你的cell點(diǎn)擊響應(yīng)方法是否寫成了didDeselectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"點(diǎn)擊走你+點(diǎn)擊走你+點(diǎn)擊走你點(diǎn)擊走你");
}
那么改為didSelectRowAtIndexPath即可
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath{
NSLog(@"點(diǎn)擊走你+點(diǎn)擊走你+點(diǎn)擊走你點(diǎn)擊走你");
}