iOS中的UIPageViewController

UIPageViewController

UIPageViewController是一个用来管理内容页之间导航的容器控制器(container view controller),其中每个子页面由子视图控制器管理。内容页间导航可以由用户手势触发,也可以由代码控制。

UIPageViewController可以实现图片轮播效果和翻书效果.

初始化PageViewController

public init(transitionStyle style: UIPageViewController.TransitionStyle,
            navigationOrientation: UIPageViewController.NavigationOrientation,
                          options: [UIPageViewController.OptionsKey : Any]? = nil)

初始化方法提供三个参数:

  • TransitionStyle

UIPageViewController翻页的过渡样式

  public enum TransitionStyle : Int {
        case pageCurl // Navigate between views via a page curl transition. 卷曲样式类似翻书效果
        case scroll // Navigate between views by scrolling. UIScrollView滚动效果
  }
  • NavigationOrientation

UIPageViewController导航方向

 public enum NavigationOrientation : Int {
        case horizontal // 水平导航
        case vertical // 垂直导航
 }
  • UIPageViewController.OptionsKey

这个参数是可选的,传入的是对UIPageViewController的一些配置

 public struct OptionsKey : Hashable, Equatable, RawRepresentable {

        public init(rawValue: String)
 }

 extension UIPageViewController.OptionsKey {

    public static let spineLocation: UIPageViewController.OptionsKey
    
    // Key for specifying spacing between pages in options dictionary argument to initWithTransitionStyle:navigationOrientation:options:.
    // Value should be a CGFloat wrapped in an NSNumber. Default is '0'.
    // Only valid for use with page view controllers with transition style 'UIPageViewControllerTransitionStyleScroll'.
    @available(iOS 6.0, *)
    public static let interPageSpacing: UIPageViewController.OptionsKey
}
  • spineLocation

这个key只有在TransitionStyle是翻书效果pageCurl的时候才有作用, 它定义的是书脊的位置,值对应着SpineLocation枚举,默认值为UIPageViewController.SpineLocation.min

 public enum SpineLocation : Int {
        case none // Returned if 'spineLocation' is queried when 'transitionStyle' is not 'UIPageViewControllerTransitionStylePageCurl'.
        case min // Requires one view controller.
        case mid // Requires two view controllers.
        case max // Requires one view controller.
 }
  • interPageSpacing

这个key只有在TransitionStyleUIScrollView滚动效果scroll的时候才有作用, 它定义的是两个页面之间的间距(默认间距是0)

数据源和代理

数据源提供了UIPageViewController内容

 weak open var dataSource: UIPageViewControllerDataSource? // If nil, user gesture-driven navigation will be disabled.

UIPageViewControllerDataSource协议

public protocol UIPageViewControllerDataSource : NSObjectProtocol {

    @available(iOS 5.0, *)
    public func pageViewController(_ pageViewController: UIPageViewController,
                                   viewControllerBefore viewController: UIViewController) -> UIViewController?

    @available(iOS 5.0, *)
    public func pageViewController(_ pageViewController: UIPageViewController,
                                   viewControllerAfter viewController: UIViewController) -> UIViewController?

    @available(iOS 6.0, *)
    // The number of items reflected in the page indicator.
    optional public func presentationCount(for pageViewController: UIPageViewController) -> Int 

    @available(iOS 6.0, *)
    // The selected item reflected in the page indicator.
    optional public func presentationIndex(for pageViewController: UIPageViewController) -> Int
}

协议中包含了四个方法,其中两个为@required,另外两个是@optional.

 public func pageViewController(_ pageViewController: UIPageViewController,
                                   viewControllerBefore viewController: UIViewController) -> UIViewController?

该方法是返回前一个页面,如果返回为nil,那么UIPageViewController就会认为当前页面是第一个页面不可以向前滚动或翻页。当NavigationOrientationhorizontal时,那么该方法获得当前页面左边的视图控制器

public func pageViewController(_ pageViewController: UIPageViewController,
                                   viewControllerAfter viewController: UIViewController) -> UIViewController?

该方法返回后一个页面,如果返回为nil,那么UIPageViewController就会认为当前页面是最后一个页面不可以向后滚动或翻页。当NavigationOrientationhorizontal时,那么该方法获得是当前页面右边的视图控制器

代理(delegate)自定义UIPageViewController的行为

weak open var delegate: UIPageViewControllerDelegate?

UIPageViewControllerDelegate协议

public protocol UIPageViewControllerDelegate : NSObjectProtocol {

    @available(iOS 6.0, *)
    optional public func pageViewController(_ pageViewController: UIPageViewController,
                                            willTransitionTo pendingViewControllers: [UIViewController])

    @available(iOS 5.0, *)
    optional public func pageViewController(_ pageViewController: UIPageViewController,
                                            didFinishAnimating finished: Bool,
                                            previousViewControllers: [UIViewController],
                                            transitionCompleted completed: Bool)

    @available(iOS 5.0, *)
    optional public func pageViewController(_ pageViewController: UIPageViewController,
                                            spineLocationFor orientation: UIInterfaceOrientation) -> UIPageViewController.SpineLocation


    @available(iOS 7.0, *)
    optional public func pageViewControllerSupportedInterfaceOrientations(_ pageViewController: UIPageViewController) -> UIInterfaceOrientationMask

    @available(iOS 7.0, *)
    optional public func pageViewControllerPreferredInterfaceOrientationForPresentation(_ pageViewController: UIPageViewController) -> UIInterfaceOrientation
}

协议中有5各方法

optional public func pageViewController(_ pageViewController: UIPageViewController,
                     willTransitionTo pendingViewControllers: [UIViewController])

该方法是UIPageViewController开始滚动或翻页的时候触发

optional public func pageViewController(_ pageViewController: UIPageViewController,
                                 didFinishAnimating finished: Bool,
                                     previousViewControllers: [UIViewController],
                               transitionCompleted completed: Bool)

该方法是在UIPageViewController结束滚动或翻页的时候触发

optional public func pageViewController(_ pageViewController: UIPageViewController,
                                 spineLocationFor orientation: UIInterfaceOrientation) -> UIPageViewController.SpineLocation

该方法在TransitionStylepageCurl并且横竖屏状态变化的时候触发,我们可以重新设置书脊的位置,比如:如果屏幕是竖屏状态的时候我们就设置书脊位置是min或max, 如果屏幕是横屏状态的时候我们可以设置书脊位置是mid

最后两个方法设置了UIPageViewController支持的屏幕类型

重要的方法和属性

isDoubleSided

属性默认为NO,如果我们当前屏幕仅展示一个页面那么不用设置这个属性,如果设置了UIPageViewControllerSpineLocationMid这个选项,效果是翻开的书这样屏幕展示的就是两个页面,这个属性就必须设置为true了.

open var isDoubleSided: Bool // Default is 'NO'.

setViewControllers

open func setViewControllers(_ viewControllers: [UIViewController]?,
                             direction: UIPageViewController.NavigationDirection,
                             animated: Bool,
                             completion: ((Bool) -> Void)? = nil)

这个方法是设置UIPageViewController初始显示的页面,如果doubleSided设为true了,那么viewControllers这个参数至少包含两个视图控制器

NavigationDirection

// Only pertains to 'UIPageViewControllerTransitionStylePageCurl'.
public enum NavigationDirection : Int {
     case forward  // 导航到下一个页面
     case reverse  // 导航到上一个页面
}

使用

简单的实现滑动切换视图,即轮播图

class PageViewController: UIViewController {

    // 懒加载创建UIPageViewController
    lazy var pageViewController: UIPageViewController = {
        // 设置水平滚动
        let pageVc = UIPageViewController(transitionStyle: .scroll,
                                          navigationOrientation: .horizontal,
                                          options: nil)
        pageVc.dataSource = self
        pageVc.delegate = self
        return pageVc
    }()
    // 简单的3个UIViewController
    var viewControllers: [UIViewController] {
        return [RedViewController(), YellowViewController(), BlueViewController()]
    }
    var currentIndex: Int = 0

    override func viewDidLoad() {
        super.viewDidLoad()
        addPageViewController()

        // 设置初始化显示视图控制器
        pageViewController.setViewControllers([viewControllers[currentIndex]],
                                              direction: .forward,
                                              animated: true,
                                              completion: nil)
    }

    func addPageViewController() {
        self.addChild(pageViewController)
        pageViewController.view.frame = self.view.frame
        view.addSubview(pageViewController.view)
        pageViewController.didMove(toParent: self)
    }
}

扩展PageViewController实现数据源和代理协议

extension PageViewController: UIPageViewControllerDataSource, UIPageViewControllerDelegate {
    func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
        // 显示前一个页面,保证数组不越界
        if currentIndex - 1 >= 0 {
            currentIndex -= 1
            return viewControllers[currentIndex]
        }
        return nil
    }

    func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
        // 显示后一个视图页面
        if currentIndex + 1 < viewControllers.count {
            currentIndex += 1
            return viewControllers[currentIndex]
        }
        return nil
    }

    func pageViewController(_ pageViewController: UIPageViewController, willTransitionTo pendingViewControllers: [UIViewController]) {
        print("willTransition - 开始滚动")
    }

    func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
        print("didFinishAnimating - 结束滚动")
    }
}

实现效果如下

2.gif

相关实战

  • Parchment
    68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f70617263686d656e742d73776966742f70617263686d656e742d64656c65676174652e676966.gif

    68747470733a2f2f73332d75732d776573742d312e616d617a6f6e6177732e636f6d2f70617263686d656e742d73776966742f70617263686d656e742d756e73706c6173682e676966.gif

参考

UIPageViewController

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容