使用 UIPageControl 在 UIWebView 之间切换
我正在开发的应用程序使用 UIWebViews 来显示 vimeo 视频。我希望能够在它们之间切换,而不是一次全部显示它们。我想知道是否可以使用 UIPageControl 在它们之间切换以及如何实现?
这可能吗?
The app that i am working on uses UIWebViews to display vimeo videos. Instead of displaying them all at once, i would like to be able to switch between them. What i would like to find out is whether i can use a UIPageControl to switch between them and how that can be achieved?
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
UIScrollView
,Apple提供了优秀的示例代码:http://developer.apple.com/library/ios/#samplecode/PageControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007795
Use
UIScrollView
, Apple provides excellent sample code:http://developer.apple.com/library/ios/#samplecode/PageControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007795
您需要将
UIScrollView
与UIPageControl
一起使用。这可能很棘手,但是有很多教程,例如这个: 链接。You need to use a
UIScrollView
together with aUIPageControl
. This can be tricky, but there are lots of tutorials out there, such as this one: link.