How to dynamically resize UITableViewCell height

后端 未结 4 1106
野的像风
野的像风 2020-11-27 10:54

I have the classical grouped UITableView with editable UITextViews inside every cell. This text views can be single or multi-lined, and I want the cell to increase its heigh

4条回答
  •  悲&欢浪女
    2020-11-27 11:37

    You do not always have to reload the entire table. You can instead just reload that one row.

    [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
    

提交回复
热议问题