mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
26 lines
818 B
Swift
26 lines
818 B
Swift
//
|
|
// StoryPageDelegate.swift
|
|
// NewsBlur
|
|
//
|
|
// Created by David Sinclair on 2020-08-27.
|
|
// Copyright © 2020 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/// Delegate and data source of the story page controller
|
|
class StoryPageDelegate: StoryPageObjCDelegate, UIPageViewControllerDelegate, UIPageViewControllerDataSource {
|
|
func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
|
|
//TODO: *** TO BE IMPLEMENTED *** CATALYST
|
|
|
|
return nil
|
|
}
|
|
|
|
func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
|
|
//TODO: *** TO BE IMPLEMENTED *** CATALYST
|
|
|
|
return nil
|
|
}
|
|
|
|
|
|
}
|