I've got an use case where those indicators disturb the user interaction. Can I subclass and overide an method or something similar to remove the scoll indicators from the scroll view?
+5
A:
Set the showsHorizontalScrollIndicator & showsVerticalScrollIndicator properties of UIScrollView to NO.
[tableView setShowsHorizontalScrollIndicator:NO];
[tableView setShowsVerticalScrollIndicator:NO];
retainCount
2009-05-04 21:20:19