Is there a way to hide the scroll bar in a scroll view?
+1
A:
[scrollView setShowsHorizontalScrollIndicator:NO];
[scrollView setShowsVerticalScrollIndicator:NO];
This is in the docs.
quixoto
2010-08-24 16:38:55