Delay when updating view in the completionHandler of an async HTTP request

后端 未结 3 1330
生来不讨喜
生来不讨喜 2021-01-06 14:46

In my app when the user presses a button I start a HTTP asynchronous request (using [NSURLConnection sendAsynchronousRequest...]) and change the text of U

相关标签:
3条回答
  • 2021-01-06 15:08

    This could happen because all UI stuff should be called in a main queue. Try this:

    - (IBAction)requestStuff:(id)sender 
    {
        NSURL *url = [NSURL URLWithString:@"http://stackoverflow.com/"];
        NSURLRequest *request = [NSURLRequest requestWithURL:url];
        NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
    
        [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:
         ^(NSURLResponse *response, NSData *data, NSError *error) 
         {
             NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;          
    
             dispatch_async(dispatch_get_main_queue(), ^{
                 exampleLabel.text = [NSString stringWithFormat:@"%d", httpResponse.statusCode];
             });
         }];    
    }
    
    0 讨论(0)
  • 2021-01-06 15:09

    According to The Apple Docs.

    Threads and Your User Interface

    If your application has a graphical user interface, it is recommended that you receive user-related events and initiate interface updates from your application’s main thread. This approach helps avoid synchronization issues associated with handling user events and drawing window content. Some frameworks, such as Cocoa, generally require this behavior, but even for those that do not, keeping this behavior on the main thread has the advantage of simplifying the logic for managing your user interface.

    Calling your UI updates on the main thread would solve this problem. Surround your UI code with a call to the main thread (below).

    dispatch_async(dispatch_get_main_queue(), ^{
       exampleLabel.text = [NSString stringWithFormat:@"%d", httpResponse.statusCode];
    });
    

    There are other ways to do calls on the main thread, but using the simpler GCD commands would do the job. Again, see the Threaded Programming Guide for more info.

    0 讨论(0)
  • 2021-01-06 15:11

    You can try to create a method that sets the text, and inside the block you call:

            [self performSelectorOnMainThread:@selector(mySelector) withObject:nil waitUntilDone:NO];
    

    The selector will call and executed on main thread. Hope this help....

    0 讨论(0)
提交回复
热议问题