views:

745

answers:

1

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];

Documentation - UIScrollView

retainCount