1. 程式人生 > >UITableViewcell選中後去掉背景灰色

UITableViewcell選中後去掉背景灰色

//  點選單元格的時候取消選中單元格

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

{   UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}