TableView not reloading with new data from AFNetworking Response Object

前端 未结 1 1399
误落风尘
误落风尘 2021-01-26 04:07

Below I have code for a friends list tableview that has custom tableview cells that can be slided to the right to reveal 3 buttons. 1 of those buttons is the removeFriend button

相关标签:
1条回答
  • 2021-01-26 04:44

    The network request is asynchronous

    [friendsTableView reloadData];

    may be executed before the success block in which friendsList is updated

    0 讨论(0)
提交回复
热议问题