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 893677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:15:35+00:00 2026-05-15T14:15:35+00:00

I have been trying to add a button after a parser ( on a

  • 0

I have been trying to add a button after a parser ( on a seperate thread ) is complete. I understand you cannot interact with UI elements on any thread other than the main thread.

I do not want to use a timer, or a while statement… so my question is

Once the parser is done what do you suggest I do to add the button to the view? I do not want it added before because the user will get to a blank table. I also do not want to reload the table when done because the presents other problems for me.

the performSelector on main thread does not seem to work for me either.. ? Im kind of lost here…

Any suggestions?


Here is where I kick off to another thread to start parser (In AppDelegate)

// begin background downloads
[NSThread detachNewThreadSelector:@selector(parseNewData) toTarget:self withObject:nil];

My parseNewData function (In AppDelegate)

-(void)parseNewData {

    //start network activity spinner and release controller when done
    RootViewController * root = [[RootViewController alloc] init];
    [root downloadIcon];
    [root release];

    //create pool to avoid memory leak
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];


    // get the XML path and start parsing
    NSURL *pathURL = [NSURL URLWithString:@"http://www.mysite.com/file.xml"];
    NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:pathURL];
    [parser setDelegate:self];
    [parser parse];

    //drain pool 
    [pool drain];
    [pool release];

}

Parser Did Finish (In AppDelegate)

- (void)parserDidEndDocument:(NSXMLParser *)parser
{

    // parser is finished, we can now kill the network activity icon on root view controller
    RootViewController * root = [[RootViewController alloc] init];
    [root killDownloadIcon];
    [root performSelectorOnMainThread:@selector(unhideShowtimesButton) withObject:nil waitUntilDone:NO];
    [root release];

}

My unhideShowtimesButton on ( in RootViewController )

-(void)unhideShowtimesButton {
    showtimesButton.hidden = FALSE;
}

I am making it to my unhideShowtimesButton (verified by break point) but its just completely ignoring the hidden = False.

  • 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-15T14:15:36+00:00Added an answer on May 15, 2026 at 2:15 pm

    You are creating a new RootViewController instance in each of the functions. This looks wrong. You should use only one instance throughout the code. My gut feel is that since the RootViewController instances are different, the showTimesButton instance that you are trying to hide is different from the one that is being shown.

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

Sidebar

Ask A Question

Stats

  • Questions 457k
  • Answers 457k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The only way IE9 could install side-by-side is when it… May 15, 2026 at 10:53 pm
  • Editorial Team
    Editorial Team added an answer The smallest change to make your SQL work is to… May 15, 2026 at 10:53 pm
  • Editorial Team
    Editorial Team added an answer Not sure how to do this within Visual Studio but… May 15, 2026 at 10:53 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.