滚动视图与选定的页面

发布于 2024-08-10 08:19:37 字数 188 浏览 4 评论 0原文

我有一个滚动视图,尺寸宽度=320x10,高度=460。 我在启用分页的滚动视图中添加 10 个宽度=320 和高度=460 的图像。 现在我可以通过滚动将第 1 张图像滚动到第 10 张图像。

当scrollView显示时,总是从第一页开始显示。 我想最初显示滚动视图的任何随机页面,以便我可以从最初滚动上一页和下一页。 我怎样才能做到这一点?

I have a scrollViewWith size width=320x10 and height=460.
I add 10 images of size width=320 and height=460 in scrollview with paging enabled.
Now I can scroll the from 1st image to 10th image by scrolling.

when scrollView show, it is always showed from the 1st page.
I want to show initially any random page of the scrollView, such that i can scroll previous page and next page from initially.
How can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋心╮凉 2024-08-17 08:19:37
[scrollView setContentOffset: CGPointMake(0, y) animated: YES];

您只需将 y 变量设置为您想要滚动到的点即可。例如:

[scrollView setContentOffset: CGPointMake(0, 920) animated: YES];

应该滚动到第三张图像。

[scrollView setContentOffset: CGPointMake(0, y) animated: YES];

You should just need to set the y variable to the point where you would like to scroll to. For example:

[scrollView setContentOffset: CGPointMake(0, 920) animated: YES];

Should scroll to your 3rd image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文