iOS TableView 去除点击后产生的灰色背景

直接上代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

你可能感兴趣的:(iOS TableView 去除点击后产生的灰色背景)