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.
Here's more safe Swift 3 method:
func scrollViewDidScroll(_ scrollView: UIScrollView) { let verticalIndicator = scrollView.subviews.last as? UIImageView verticalIndicator?.backgroundColor = UIColor.green }