UITableView reload section

前端 未结 11 2078
余生分开走
余生分开走 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:24

    Yes, there is:

    - (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation
    

提交回复
热议问题