I want to reload only one section not the full table. Is there any method in UITableView.
UITableView
[tableView reloadData] is used to load full table
[tableView reloadData]
that the correct way:
[self.tableView beginUpdates]; [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone]; [self.tableView endUpdates];