tableView reloadData not working

前端 未结 6 1611
小鲜肉
小鲜肉 2021-01-17 07:45

When I call [tableView reloadData] the function - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

6条回答
  •  醉梦人生
    2021-01-17 08:13

    Inspite of writing this [self.tableView reloadData]; try below, becuase already you have written class so no need to take the outlet again:-

    [self reloadData]
    

提交回复
热议问题