Reputation: 305
Hi I'm trying to resize a UITableView's UITableViewCell as I type in a TextView in the cell. I want the text to keep flowing but focus on what I"m typing now. This is similar to what you would experience in the Mail App. What is the best way to resize the cell dynamically as I keep typing and entering content?
Upvotes: 0
Views: 59
Reputation: 4651
I'm assuming you are already sizing your cell dynamically.
Whenever the user types a character do this...
[tableView beginUpdates];
[tableView endUpdates];
Upvotes: 1