Is it possible to Turn page programmatically in UIPageViewController?(是否可以在 UIPageViewController 中以编程方式翻页?)
问题描述
UIPageViewController
中是否可以通过编程方式翻页?
Is it possible to turn page programmatically in UIPageViewController
?
推荐答案
是的,方法是可以的:
- (void)setViewControllers:(NSArray *)viewControllers
direction:(UIPageViewControllerNavigationDirection)direction
animated:(BOOL)animated
completion:(void (^)(BOOL finished))completion;`
这与在页面上设置第一个视图控制器的方法相同.类似的,你可以用它去其他页面.
That is the same method used for setting up the first view controller on the page. Similar, you can use it to go to other pages.
想知道为什么 viewControllers
是一个数组,而不是单个视图控制器吗?
Wonder why viewControllers
is an array, and not a single view controller?
这是因为页面视图控制器可能有一个脊椎"(就像在 iBooks 中一样),一次显示 2 页内容.如果您一次显示 1 页内容,则只需传入一个 1 元素数组.
That's because a page view controller could have a "spine" (like in iBooks), displaying 2 pages of content at a time. If you display 1 page of content at a time, then just pass in a 1-element array.
Swift 中的一个例子:
An example in Swift:
pageContainer.setViewControllers([displayThisViewController], direction: .Forward, animated: true, completion: nil)
这篇关于是否可以在 UIPageViewController 中以编程方式翻页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在 UIPageViewController 中以编程方式翻页


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