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 创建多个视图?


- android 4中的android RadioButton问题 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01