I'm trying to hide table view until all the data is loaded. I found this question:
UITableView - hide all groups/cells while data is loading
They say about setting sections to 0 until all data is loaded, and then reload cells and table view, but they don't detail how to do it.
Many thanks
you can hide your table view
[self.tableView setHidden:YES];
Until you get all your data and you make it visible
[self.tableView setHidden:NO];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With