Custom color my UIActivityIndicatorView

26,715

Solution 1

In iOS 5.0 and up you can use setColor: on the UIActivityIndicatorView to set a custom color.

In Swift you can just use activityIndicatorView.color = UIColor.red

Solution 2

You need to create a custom set of images (better), then animate it using a UIImageView.

Or place a colored transparent view on top of the activity indicator to "tint" it (lower quality).

Solution 3

For Xcode 7 (possibly earlier) you can also specify the color directly in Interface Builder.

Share:
26,715
lavoy
Author by

lavoy

Updated on February 22, 2020

Comments

  • lavoy
    lavoy about 4 years

    I would like to have my UIActivityIndicatorView be colored a custom color. Is there any way to set this property?

  • MohammedYakub M.
    MohammedYakub M. almost 14 years
    Hi kenny...its good idea but have you any sample code to rotational animation of UIImageView ?
  • kennytm
    kennytm almost 14 years
    @yakub: No. You create 10 images and use animationImages. At least that how the indicator views work.