1. 程式人生 > >iOS 去掉tableViewCell 點選效果 三個簡單方法

iOS 去掉tableViewCell 點選效果 三個簡單方法

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    // 1 鬆開手選中顏色消失   

   [tableView deselectRowAtIndexPath:indexPath animated:YES];

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    // 2
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    // 3點選沒有顏色改變
    cell.selected = NO;

}