Expanding table view cells disappearing

前端 未结 7 1428
逝去的感伤
逝去的感伤 2021-02-12 23:36

I have cells that expand by changing their height with a setExpanded: method call.

I then call reloadRowsAtIndexPaths: to refresh the cells.

The problem is the c

相关标签:
7条回答
  • 2021-02-13 00:38

    In:

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    

    you must return a new cell. If cell you don't need to create a new one, you only need:

    [tableView beginUpdates];
    [tableView endUpdates];
    

    There is no need to call reloadRowsAtIndexPaths.

    0 讨论(0)
提交回复
热议问题