2012-03-28 13 views

Respuesta

19

Lo que quiere es UITableViewCellStyleValue1, pero no puede establecer el estilo de una celda existente: debe configurarlo cuando lo está creando. De esta manera:

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"YourIdentifier"]; 
+11

Pero, ¿qué sucede si estás usando dequeueReuseable: forIndexPath: ... en una tableView? – fatuhoku

+0

¿Cómo se hace esto fuera del inicializador initWithStyle? – wcochran

Cuestiones relacionadas