UITableView reload section

前端 未结 11 2077
余生分开走
余生分开走 2020-12-05 01:46

I want to reload only one section not the full table. Is there any method in UITableView.

[tableView reloadData] is used to load full table

11条回答
  •  庸人自扰
    2020-12-05 02:23

    Try to use

    [self.tableView beginUpdates]; 
    [self.tableView endUpdates];
    

    Hope this will solve your issue.

提交回复
热议问题