I have a TextView inside a UITableViewCell. The text inside the TextView can be edited where it is.
A TextView grows and shrinks vertically depending on the number of lines contained in the text. So far, I have not found the ability to also let the string containing the TextView grow and dynamically shrink.
[tableView reloadData]
or
[tableView reloadRowsAtIndexPaths: withRowAnimation:]
do not work because they reject the keyboard with every change.
Is there a way to change the height of a single row in a UITableView without deviating the keyboard?
ios objective-c height uitableview row
Stefan Mar 17 '11 at 19:32 2011-03-17 19:32
source share