Currently I have a table that is updated by a server query, so it is not instant. Currently I populate the array in the viewDidLoad
delegate method like so:
- (void)viewDidLoad
{
[super viewDidLoad];
followers = [[User sharedManager] loadFollowers];
}
However, what happens is that I press the button to modal transition into the tableview and it then waits for the query to succeed and only then pulls up the view. Obviously this is really annoying since it feels like it's crashing/lagging. I'd rather it pulls up the page instantly and has a "loading..." or an activity view while the query executes. How can I do this?