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

  • SEARCH
  • Home
  • 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 7623833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:48:20+00:00 2026-05-31T04:48:20+00:00

I have a UIProgress view which I want to update as an NSXML Parser

  • 0

I have a UIProgress view which I want to update as an NSXML Parser runs. The NSXML parser is running on the main thread and takes about 30 seconds to run.

At the end of a parsing section I call a method in my app delegate :

[appDelegate updateLoadingScreen:0.75];

The app delegate then calls the modelLoadingProgressUpdate method in the loadingScreen :

- (void)updateLoadingScreen : (float)progress {
NSLog(@"PROGRESS REQUEST !!!");

NSNumber * progressNS = [NSNumber numberWithFloat:progress];

[loadingScreen modelLoadingProgressUpdate : progressNS];

}

The modelLoadingProgressUpdate method then uses a dispatch queue to update the UIProgressBar :

- (void) modelLoadingProgressUpdate :(NSNumber *)progress {

dispatch_queue_t mainqueue = dispatch_get_main_queue();
dispatch_async(mainqueue, ^  { 

float updateProgress = [progress floatValue];
NSLog(@"Update Progress is %f", updateProgress);

progressView.progress = updateProgress;

});

}

However nothing is updating on my UIProgressView. The modelLoadingProgressUpdate seems to only trigger once the parser has completed.

Can anyone spot what is wrong ?

  • 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-05-31T04:48:21+00:00Added an answer on May 31, 2026 at 4:48 am

    Here’s your problem:

    The NSXML parser is running on the main thread and takes about 30 seconds to run.

    So your NSXMLParser is blocking the main thread, so the block that you dispatch isn’t being executed until the NSXMLParser is done.

    Since the NSXMLParser is running on the main thread anyway, you could just get rid of the dispatch_async and just update progressView.progress directly in modelLoadingProgressUpdate:.

    Or, you can run the NSXMLParser on a background thread, in which case it won’t block the main thread and the progress updating block will run soon after you dispatch it.

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

Sidebar

Related Questions

Have just started using Visual Studio Professional's built-in unit testing features, which as I
I have a UIToolbar in which I have placed a UIProgressView successfully. However, I
I have a project in which a series of NSThread objects do something and
I'm downloading and parsing a XML document. During this, I want to update my
I have a tree of folders and I want to add a progress bar
Have finally got a responsive site working (of a fashion). What I want to
I'm writing an iPod app replacement, and in my now playing view I want
Have anyone used Redmine Documentor which lets you convert PHP to HTML to Redmine
I have a UIProgressView called progTimer that I placed on my View Controller via
I have a UIAlertView that asks a user whether they want to copy a

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.