ios Changing UIScrollView scrollbar color to different colors

ios, uiscrollview

Solution

Unfortunately you can't, of course you can always roll your own. These are your options:

UIScrollViewIndicatorStyleDefault:

The default style of scroll indicator, which is black with a white border. This style is good against any content background.

UIScrollViewIndicatorStyleBlack:

A style of indicator which is black and smaller than the default style. This style is good against a white content background.

UIScrollViewIndicatorStyleWhite:

A style of indicator is white and smaller than the default style. This style is good against a black content background.

Problem

How can we change color of UIScrollview's scroll indicator to something like blue, green etc. I know we can change it to white, black. But other then these colors. Many Thanks

Original source