I have an UITableview which has a description cell populated by an NSString, ok. But the problem is that the UITableView delegate methods are called before the code I use to download the description so it doesn’t loads. How can I do something to solve this? thanks in advance 🙂
I have an UITableview which has a description cell populated by an NSString ,
Share
You can call
[self.tableView reloadData];when the download finished.