UIScrollView not showing scroll indicator
Posted
by George
on Stack Overflow
See other posts from Stack Overflow
or by George
Published on 2010-01-07T02:36:02Z
Indexed on
2010/04/12
15:23 UTC
Read the original article
Hit count: 456
I have a UIScrollView which I create and size dynamically using...
scrollView.contentSize = CGSizeMake(scrollView.frame.size.width , length);
I then add subviews
to the UIScrollView
.
I do have scrollView.showsVerticalScrollIndicator = YES;
When scrolling the scroll indicator never appears.
Even if I call [scrollView flashScrollIndicators]
nothing happens.
Ideas?
© Stack Overflow or respective owner