Search code examples
iosswiftuitextview

How to change the UIText view vertical scrollbar indicator color?


Are there any chances to change the UITextView vertical scroll bar indicator color? As per the requirement, I'm using the text view and want to change the color of the scroll bar indicator.

textView.isScrollEnabled = true
textView.showVerticalScrollIndicator = true

Thanks in Advance!


Solution

  • Use following code to update indicator color of UIScrollView

    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        let verticalIndicator: UIImageView = (scrollView.subviews[(scrollView.subviews.count - 1)] as! UIImageView)
    
        verticalIndicator.backgroundColor = UIColor(red: 211/255.0, green: 138/255.0, blue: 252/255.0, alpha: 1).
    
    }