NewsBlur/clients/ios/Classes/HorizontalPageViewController.swift
David Sinclair 8cc59dccf4 #817 (three column layout)
- More progress on the story pages stuff.
2020-09-26 20:30:35 -07:00

15 lines
449 B
Swift

//
// HorizontalPageViewController.swift
// NewsBlur
//
// Created by David Sinclair on 2020-08-27.
// Copyright © 2020 NewsBlur. All rights reserved.
//
import UIKit
/// Manages horizontal story pages. An instance of this is contained within `DetailViewController`.
class HorizontalPageViewController: UIPageViewController {
/// Weak reference to owning detail view controller.
weak var detailViewController: DetailViewController?
}