Question

I have a problem regarding UIActivityIndicator. I applied [spinner startAnimating] at the IBAction on a button and then doing some process. After the process activityindicator should be stopped and then navigate to another view. But the activity indicator does not appear. When I remove the line "[spinner stopAnimating]" then the indicator appears but not at the instant button is pressed. It appears just before the other view loads, and apparently does not appear, I mean it does not appear but if we see very carefully then only it appears for an instant.

Thanx in advance for any answer.

Was it helpful?

Solution

Ole is pretty much correct, but there is a trick of you don't mind synchronous processing (often that it why you want to display the activity indicator in the first place).

First move your code that you want to process while the spinner is up to its own method. Then do

[spinner startAnimating];
[self performSelector:@selector(methodname) withObject:nil afterDelay:0];

The afterDelay:0 means on the next time through the run loop. That way the spinner gets started.

OTHER TIPS

The animation will not start until your code returns control to the run loop. If your processing task blocks the main thread, the no UI updates will take place until it is finished. You should do your processing asynchronously (e.g. by starting an NSOperation).

you should run in perform selector .

for ex:

[self performSelector:@selector(animation) withObject:nil afterDelay:0]

-(void)animation

{

NSAutoreleasepool *pool = [[NSAutorepleasepool alloc]init];

[indicatorView startAnimating];

[pool release];

}

This is an old question. I leaving my answer here, so that might help someone to solve their problem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top