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 创建多个视图?
基础教程推荐
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
