views:

27

answers:

1

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