mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
20 lines
559 B
Swift
20 lines
559 B
Swift
![]() |
//
|
||
|
// StoryPagesViewController.swift
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by David Sinclair on 2020-08-27.
|
||
|
// Copyright © 2020 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
/// Manages story pages, containing the previous, current, and next stories.
|
||
|
class StoryPagesViewController: StoryPagesObjCViewController {
|
||
|
/// Convenience initializer to load a new instance of this class from the XIB.
|
||
|
convenience init() {
|
||
|
self.init(nibName: "StoryPagesViewController", bundle: nil)
|
||
|
|
||
|
self.appDelegate = NewsBlurAppDelegate.shared()
|
||
|
}
|
||
|
}
|