XCode comentar / descomentar varias lineas de una vez

para descomentar o comentar varias lineas de una sola vez en XCode tan solo deberemos pulsar cmd + shift + 7

así si por ejemplo tenemos:

    static NSString *CellIdentifier = @”Cell”;
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    
    // Configure the cell…
    cell.textLabel.text = @”LEXCode”;
    

    return cell;
conseguiremos:
//    static NSString *CellIdentifier = @”Cell”;
//    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
//    
//    // Configure the cell…
//    cell.textLabel.text = @”LEXCode”;
//    
//    return cell;
Y viceversa