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 those looking to do this in Swift.
self.tableView.showsHorizontalScrollIndicator = false self.tableView.showsVerticalScrollIndicator = false