You can use the .color property in order to change the UIActivityIndicatorView color, e.g.:
// Objective-C
activityIndicator.color = [UIColor greenColor];
// Swift
activityIndicator.color = .green
Note that .color is only available from iOS 5.