本文介绍了滚动指标可见性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法让滚动指示器在整个应用程序中可见?[滚动指示器仅在我触摸滚动视图区域时可见。]

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.]

问候

推荐答案

您可以设置计时器并致电

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

或手动调用

- (void)flashScrollIndicators;

这篇关于滚动指标可见性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 08:38