Necesito hacer un UITableViewCell
que retiene una gran cantidad de texto. Sé que puedo agregar un UITextView
a mi celular, pero cada entrada no tendrá la misma cantidad de texto.UITableViewCell, UITextView con altura dinámica
Sé que puedo controlar la altura del UITableViewCell
con: -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
, pero eso no es realmente lo que estoy buscando.
Escenario 1:
---------------
| First Cell |
---------------
---------------
| Second Cell |
| with some |
| text. |
---------------
---------------
| Third Cell |
---------------
Escenario 2:
---------------
| First Cell |
---------------
---------------
| Second Cell |
| with some |
| more text and |
| an unknown |
| cell height. |
---------------
---------------
| Third Cell |
---------------
no está claro lo que está buscando, - (CGFloat) tableView: (UITableView *) tableView heightForRowAtIndexPath: (NSIndexPath *) indexPath es la forma estándar de hacerlo. –
Sí, pero cuando no se conoce la altura de la celda por adelantado, no tiene sentido. – WrightsCS