ICL1901
ICL1901

Reputation: 7778

UIActivityIndicator in iOS5 is supposed to have a color option. How to implement this?

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

Answers (1)

codingcthulhu
codingcthulhu

Reputation: 253

Just assign a UIColor to the color property:

activityIndicator.color = [UIColor redColor];

Upvotes: 1

Related Questions