When I call [tableView reloadData] the function - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
[tableView reloadData]
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
Inspite of writing this [self.tableView reloadData]; try below, becuase already you have written class so no need to take the outlet again:-
[self.tableView reloadData];
[self reloadData]