Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView not showing first time, only when scrolling a bit

I have a UITableViewController, which is loading data from a NSURLConnection:

NSURL *url = [NSURL URLWithString:@"http://url.now"];
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:30.0];

NSOperationQueue *queue = [[NSOperationQueue alloc] init];

[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error){
    if ([data length] > 0 && error == nil){
        NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];
        [parser setDelegate:self];
        [parser parse];
    }
    else if (error != nil){
        UIAlertView* alertView = [[UIAlertView alloc] initWithTitle:@"No internet connection" message:@"Content." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alertView performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:true];
    }
}];

When the parsing ends, the reloaddata method is called. But when the app is loaded, the content of the UITableView is not showing. When I scroll a bit, it get's visible immediately. Reloading is no problem.

How can this be fixed?

like image 510
Matthias_164 Avatar asked Feb 14 '23 09:02

Matthias_164


1 Answers

Solved it. Changed the tableView reloadData to this:

 dispatch_async(dispatch_get_main_queue(), ^{
        [self.tableView reloadData];
 });

And it worked like a charm. Thanks for all answers and comments.

like image 138
Matthias_164 Avatar answered Feb 17 '23 02:02

Matthias_164