Xcode、UIscrollView 和分页
我是初学者,我需要知道如何在 UIScrollView 中放入多个页面。这些页面应包含交互元素,例如按钮、视频以及文本和图像。如果您能给我任何教程链接或一些线索,我将不胜感激。
问候。
I am a beginner, I need to know how I can put in a UIScrollView multiple pages. These pages should contain interactive elements such as buttons,video and also text and images. I would appreciate any link to a tutorial or some clue that you could give me.
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
pagingEnabled
属性设置为YES
contentSize
属性X * width
宽如果您想要垂直分页,则分页或“X * height”高。X 是页面数,从 0 开始。
这里是具有 5 个水平页的示例。
pagingEnabled
property toYES
contentSize
propertyX * width
wide if you want horizontal paging or `X * height' tall if you want vertical paging.X is a number of pages, starting with 0.
Here is a sample with 5 horizontal pages.
听起来页面控制就是您正在寻找的控制。
以下是示例代码的链接:LiNk
Sounds like page control is the one that you are looking for.
Here is the link with sample code: LiNk
您需要在
UIScrollView
上设置 2 个属性,以便实现平滑的分页滚动。You need to set 2 properties on your
UIScrollView
in order to have a smooth paging scroll.