是否可以在 UIPageViewController 中以编程方式翻页?

Is it possible to Turn page programmatically in UIPageViewController?(是否可以在 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 中以编程方式翻页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

问题描述:H5页面,ios点击input框,输入内容时,页面会自动放大,且失焦后需手动放小,要怎么处理呢? 解决办法 meta name="viewport" content="width=device-width, initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" width=device
AWS DynamoDB Batch Get Request - iOS(AWS DynamoDB 批量获取请求 - iOS)
Querying DynamoDB on non-key attributes(在非关键属性上查询 DynamoDB)
DynamoDB auto incremented ID amp; server time (iOS SDK)(DynamoDB 自动递增 ID amp;服务器时间(iOS SDK))
Where to find a clear explanation about swift alert (UIAlertController)?(哪里可以找到关于 swift alert (UIAlertController) 的清晰解释?)
Facebook Requests Dialog: Frictionless Requests in native iOS app possible?(Facebook 请求对话框:本机 iOS 应用程序中的无摩擦请求可能吗?)