UIScrollView - 向用户显示更多可滚动的内容
我有一个与这篇文章类似的问题,
我有一个滚动视图,可以看到更多数据如果用户向左滚动或滚动到底部,则为用户。但我无法找到一种方法来告诉用户滚动上有更多内容可用。它并不直观,只有通过实验,用户才会发现滚动选项。
有什么方法可以向用户显示/告诉用户可以进行滚动。
使用 [scrollView flashScrollIndicators]
并不完全有用,因为它只是闪烁指示器,而且速度太快,用户肯定看不到它。
如果有人能帮助我解决这个问题,那就太好了。
I have a similar problem as this post
I have a scrollview where more data is visible to the user if the user scrolls to the left or scrolls to the bottom. But I am unable to find a way to tell the user that more content is available on scroll. It is not intuitive and only by experimenting, the user will find out about the scroll option.
Is there any way I can show/tell the user that scrolling is available.
Using [scrollView flashScrollIndicators]
is not exactly useful as it just flashes the indicators and it is so quick that the user would surely fail to see it.
It would be great if someone can help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我所做的...
我在滚动视图上放置了一个图像(例如指向左侧的箭头)。因此,使用下面提到的函数,每当用户加载视图时,图像就会显示(告诉右侧有更多内容)。当用户来到滚动视图的最右边时,图像会消失,当他再次向左滚动时,图像会重新出现......
This is the way I did it...
I put an image on my scroll view ( for example an arrow pointing left). So using the function mentioned below, whenever the user loads the view, the image would show (telling that more content is there in the right). When the user comes to the right most of the scrollview, the image would disappear and when he scrolls again to the left, it would reappear...
我不确定,但也许你可以设置一个计时器来闪烁指示器,以便它保持在那里......
i not sure but may be u can set a timer to flash indicators so that it stays there.......