Reputation: 2983
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
Upvotes: 1
Views: 3550
Reputation: 11537
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;
.
Upvotes: 0
Reputation: 8131
You can set a timer and call
[NSTimer timerWithTimeInterval:.1 target:self selector:@selector(flashScrollIndicators) userInfo:nil repeats:YES];
Or manually call
- (void)flashScrollIndicators;
Upvotes: 3
Reputation: 6679
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.
Upvotes: 0