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]
Try to use
[self.tableView beginUpdates]; [self.tableView endUpdates];
Hope this will solve your issue.