Run MBProgressHUD in another thread?

后端 未结 1 1363
半阙折子戏
半阙折子戏 2020-12-02 19:08

I am using MBProgressHUD to display a \"busy\" animation to use user while a UITableView is being populated. The UITableView blocks the main thread

相关标签:
1条回答
  • 2020-12-02 19:51

    UIKit does its drawing when the run loop completes the current cycle. In other words, if you're configuring a view (e.g., MBProgressHUD), the changes won't be visible until the next run loop iteration. Thus if you don't allow the run loop to spin by blocking the main thread, the UI changes won't appear immediately.

    If you can't do your work on a background thread, you need to allow the run loop to complete its cycle before you start your long-running blocking task on the main thread.

    You can do this by scheduling execution on the next run loop iteration.

    // Setup and show HUD here
    
    [self performSelector:@selector(myTask) withObject:nil afterDelay:0.001];
    

    Hide the HUD at the end of myTask. Or you can run the run loop manually.

    // Setup and show HUD here
    
    [[NSRunLoop currentRunLoop] runUntilDate:[NSDate distantPast]];
    
    // Insert myTask code here
    // Hide the shown HUD here
    

    Or (if you can use blocks)

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void){
        // Insert myTask code here
    });
    
    0 讨论(0)
提交回复
热议问题