There is any way to change the color of the "UIActivityIndicatorView" of the UIRefreshControl??
I didn't find anything!
Thanks!!
You can do it by setting the Tint Color
of the UIRefreshControl
, something like this:
Objective C
[refreshControl setTintColor:[UIColor blackColor]];
Swift
refreshControl.tintColor = .black
This will also change the arrow that expands when you slide.