Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7866917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T00:33:31+00:00 2026-06-03T00:33:31+00:00

When updating a progress bar or other progress indicator in real-time to reflect activity

  • 0

When updating a progress bar or other progress indicator in real-time to reflect activity going on in an app’s processing, I see no way to do this without using this clever code snippet:

[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]];

Otherwise, the progress bar waits until the run loop finishes, in which case it then jumps to the progress bar’s conclusion.

If you want to update progress during a single run loop (or what I perceive to be a single run loop), is this the only way to do so?

How are progress bars typically coded to update in real-time?

Is the above code dangerous? I really don’t know much about direct manipulation of the run loop, and it makes me nervous to do something in an app that I don’t understand. This code works, but is it a good idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T00:33:33+00:00Added an answer on June 3, 2026 at 12:33 am

    Run your lengthy operation on a background thread/NSOperationQueue/GCD and update the UI periodically. The UI always runs on the main thread so the update will to effect quickly. Try something like this:

    for (...) {
      // some process
      // ...
    
      dispatch_async(dispatch_get_main_queue(),^ {
        [self.progressIndicator setProgress:x animated:YES];
      });
    }
    

    In general you don’t want to run long or complex operations on the main thread as it will block the whole UI.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best way to sort a collection while updating a progress bar?
I have created an activity in which I have created a progress bar as
Hi i have a problem updating a progress bar. First i have a custom
I'm looking for a way to update my progress bar while copying a file
I have a jqueryui progress bar and I am updating it's value using some
I am having issues updating a separately opened window's progress bar from a background
I'm currently in progress of updating all sql queries to pdo where I will
I have a progress bar bound to 2 integer values - One is the
I'm having problems passing information, updating progress and indicating done with a SwingWorker class
I have a little trouble with a progress bar since iOS 5 came out.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.