How can I increase the height of UITableViewCell dynamiclly

前端 未结 2 1412
遇见更好的自我
遇见更好的自我 2021-01-07 04:10

I have an UITableView which includes a list of UITableViewCells. And I set the heights of UITableViewCells in method (CGFloat)tableView:(UITableView *)tableView height

2条回答
  •  一整个雨季
    2021-01-07 04:30

    Make your delegate method

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    

    return the (new) correct height and make the table view reload the given path.

提交回复
热议问题