I try to hide the table view until all the data has been loaded. I found this question:
UITableView - hide all groups / cells during data loading
They talk about setting partitions to 0 until all the data has been loaded, and then reload the cells and table view, but they do not detail how to do this.
Many thanks
you can hide the table view
[self.tableView setHidden:YES];
Until you get all your data and you make it visible
[self.tableView setHidden:NO];
Source: https://habr.com/ru/post/912190/More articles:AndEngine - unable to complete operation - javaHow to use LibGDX cameras with Box2D Debug Renderers - javaUsing the 'this' keyword in java constructors - javaDebian: console redirection via bluetooth - linuxAndroid: how to create a button with an image and text that are centered - androidJava ORM: multiple (interface) inheritance - javaNetbeans Project: Solving Data Source Issues - jdbcUITableView - hide all groups / cells during data loading - iphoneIs there a Java library for parsing printf format strings? - java"requires an integer" when opening () a file as utf-8? - pythonAll Articles