1

Is there any way to make scroll indicators visible throughout the whole application ?[Scroll Indicators are visible only when I touch the scroll view area.]

Regards

Akshay
  • 2,973
  • 6
  • 43
  • 75
  • 1
    Related question: http://stackoverflow.com/questions/3290813/uiscrollview-indicator-always-show and according to guidelines you cannot do that. – Praveen S Aug 02 '11 at 06:37

3 Answers3

3

You can set a timer and call

[NSTimer timerWithTimeInterval:.1 target:self selector:@selector(flashScrollIndicators) userInfo:nil repeats:YES]; 

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html

Or manually call

- (void)flashScrollIndicators;
elp
  • 8,021
  • 7
  • 61
  • 120
0

You shouldn't: this go against the interface guideline. You can flash though the indicators as it has been already mentioned by other here with the : - (void)flashScrollIndicators;.

tiguero
  • 11,477
  • 5
  • 43
  • 61
0

You can make them flash but that's it. You can't force an "always visible" state. Unless you code your own scrollbars entirely, just mimicking the look of the default ones.

Benjamin Mayo
  • 6,649
  • 2
  • 26
  • 25