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
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
You can change an image of indicator, but you should do this repeadeatly
You can use this 2 image as template:
1 .Add UIScrollViewDelegate
2. Add scrollViewDidScroll in implementation section
Demo available on GitHub - https://github.com/ioshacks/UIScrollViewIndicatorColor
Unfortunately you can't, of course you can always roll your own. These are your options:
Try this it would certainly help you
Explanation: UIScrollBar is a collection of subviews. Here scrollBar indicator(vertical/horizontal) is the one of the subviews and it's an UIImageView.So if we set custom color to the UIImageView it effects scrollBar Indicator.
please use below code on iOS Renderer
This is how the color of the scroll bar is changed: