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
Apasionado de la montaña, del SEO y la programación a partes iguales, llevo más de 20 años trabajando en distintos sectores, pero siempre enfocado a la web, si quieres saber más de mí, sigue el enlace.