首页 > 代码库 > tableView 有点击效果 但是不让选中的方法

tableView 有点击效果 但是不让选中的方法

//反选 点击的时候灰色 返回来的时候 又变回白色
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}

tableView 有点击效果 但是不让选中的方法