UIImageView中的UIImageView中的UIScrollView?

发布于 2024-09-27 03:26:16 字数 182 浏览 2 评论 0原文

我想要做的是在 iPad 显示屏上显示小册子的页面,并允许用户翻阅页面(从左到右和从右到左)。用户还应该能够放大页面上的文章。

我尝试将 UIImage 放入 UIImageView 中,然后将此 UIImageView 放入 ScrollView 中。仅当我有一页时,此功能才有效。不显示第二页。

最好的方法是什么?

What I want to do is displaying pages of a brochure at the iPad Display and allow the user to flip through the pages (left to right & right to left). The user should also be able to zoom in to articles at the pages.

I tried it with laying an UIImage into a UIImageView and then this UIImageView to a ScrollView. This works only if I have one Page. The second page is not displayed.

What would be the best way to do this ?

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

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

发布评论

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

评论(1

疯狂的代价 2024-10-04 03:26:16

将滚动视图 pagingEnabled 属性设置为 true,然后将 contentSize 设置为所有图像视图宽度总和的大小。然后,将每个 UIImageView 添加到 UIScrollView,确保将它们彼此相邻放置。

这是一个讨论此问题的教程: http://kwigbo.com/post/758575763 /uiscrollview-image-gallery-tutorial

我不确定是否启用缩放,但这应该可以让您分页浏览图像视图。

Set your scrollview pagingEnabled property to true, then set the contentSize to a size thats the sum of widths of all the imageviews. You then add each UIImageView to the UIScrollView making sure to position them next to each other.

Here is a tutorial talking about this: http://kwigbo.com/post/758575763/uiscrollview-image-gallery-tutorial

I'm not sure about enabling zoom but that should get you paging through image views.

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