I noticed in one of my apps that the activity indicator doesn't seem to work on an iPhone 4. It works fine on an old iPhone upgraded to iOS 4 just not on an iPhone 4. Does anyone know why it isn't working?

link|improve this question

0% accept rate
"doesn't work"? – jtbandes Aug 10 '10 at 22:05
feedback

4 Answers

This code should do the job, is that correct;)?

#import <QuartzCore/QuartzCore.h>

...

activityIndicatorInstance.layer.shadowColor = [UIColor grayColor].CGColor;
activityIndicatorInstance.layer.shadowRadius = 1;
activityIndicatorInstance.layer.shadowOpacity = 0.5;
activityIndicatorInstance.layer.shadowOffset = CGSizeMake(0, 1);
link|improve this answer
1  
This does work pretty well. – Will Harris Oct 13 '10 at 16:08
What class is activityIndicatorInstance? Because the compiler doesn't like that syntax for UIActivityIndicatorView: error: accessing unknown 'shadowColor' component of a property – Oscar Dec 14 '10 at 9:24
Oscar: Yes, it is UIActivityIndicatorView... Did you add the import statement that is on top of my post? – joshis Dec 27 '10 at 12:46
feedback

oddly it uses a transparent alpha channel on the iPhone 4. A solution may be to add a kind of background...

link|improve this answer
feedback

I had the same problem, but found that if I coded it rather than using Interface Builder it worked.

link|improve this answer
feedback

If your design allows, you can also use the UIActivityIndicatorViewStyleGray or attempt to add a dark shadow to the activityView's layer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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