TableView does not show data

前端 未结 2 999
梦谈多话
梦谈多话 2020-12-07 06:09

I am trying to fill my UITableView with some data I receive from a GET request. I don\'t know why but if in my numberOfRowsInSection, I return an s

2条回答
  •  温柔的废话
    2020-12-07 06:50

    You must reload table view data after receiving request with

    [self.tableView reloadData];
    

提交回复
热议问题