Reputation: 7778
In iOS5, there appears to be an option ** to use the UIActivityIndicator with a color in place of the gray/white options of the past.
I cannot figure out how to implement this. Has anyone done this? and how?
Many thanks..
** this is a link to Apple's documentation on the subject.
Upvotes: 0
Views: 419
Reputation: 253
Just assign a UIColor to the color property:
activityIndicator.color = [UIColor redColor];
Upvotes: 1