Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My first screen that contains a uitableview, i used to call webservice method in viewdidload

- (void)viewDidLoad {
[super viewDidLoad];

self.navigationItem.title =@"Brand List";

getBrands *obj = [[getBrands alloc]init];
[obj getBrandsList];

getBrandsList, but before the webservice finished, it loads the screen, so the screen contains an empty list.

So I need to wait (ie. loading dialog) until the method completes and then show the screen with data.

How do I do this?

share|improve this question
please accept some answers of previous questions. – Axel Jan 10 '11 at 14:19
Yes you need to accept some answers which you have got already.then you will get more responses................... – Sabby Jan 10 '11 at 16:30

2 Answers

Create an new View with an UIActivityIndicatorView and an UILabel. Then add it on top of your window with some CATransition. When you finish download remove this screen.

share|improve this answer
up vote 0 down vote accepted
-(IBAction) buttonClick: (id) sender{

    //show loading dialog here(activity indicator)
    [self performSelectorInBackground:@selector(callWebService) withObject:nil];    

  }

-(void) callWebService
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];

    //resend request and parse response.
   // create new view controller object and push screen
    // hide loading indicator

    [pool release];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.