How do I use UIPageControl to create multiple views?(如何使用 UIPageControl 创建多个视图?)
问题描述
我需要为我的应用程序使用 UIPagecontrol,但我不知道如何开始.我是初学者,苹果给我的例子很复杂.我只需要 3 个页面,每个页面都有不同的视图.
I need to use UIPagecontrol for my application, and I'm not sure how to get started. I'm a beginner, and the examples that apple gives me are pretty complicated. All I need are 3 pages with different views for each of them.
推荐答案
你会想要使用 UIScrollView,然后,作为兄弟,将 UIPageControl 放置在它上面.然后将您的每个页面放入滚动视图并为其打开分页.这样,每次轻弹"都会将滚动视图移动一页.
You'll want to use a UIScrollView, and then, as a sibling, position the UIPageControl over it. Then put each of your pages into the scroll view and turn paging on for it. This way each 'flick' will move the scroll view one page over.
现在,将您的视图控制器指定为滚动视图的代理,并注意 scrollViewDidEndScrollAnimation,并使用 contentOffset 来确定当前页面.
Now, assign your view controller to be the delegate of the scroll view, and watch for scrollViewDidEndScrollAnimation, and use the contentOffset to determine which page is current.
这篇关于如何使用 UIPageControl 创建多个视图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 UIPageControl 创建多个视图?


基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01