I\'ve got a use case where those indicators disturb the user interaction. Can I subclass and override a method or do something similar to remove the scroll indicators from t
For UIScrollView in Swift
scrollView?.showsHorizontalScrollIndicator = false scrollView?.showsVerticalScrollIndicator = false