mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

- Horizontal and vertical page view controllers, using experimental views. - This will help with #1351 (gestures in vertical scrolling). - Changes preparing for #1264 (multi-window) support. - Various other tweaks.
17 lines
446 B
Swift
17 lines
446 B
Swift
//
|
|
// StoryDetailViewController.swift
|
|
// NewsBlur
|
|
//
|
|
// Created by David Sinclair on 2020-08-27.
|
|
// Copyright © 2020 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/// An individual story.
|
|
class StoryDetailViewController: StoryDetailObjCViewController {
|
|
/// Convenience initializer to load a new instance of this class from the XIB.
|
|
convenience init() {
|
|
self.init(nibName: "StoryDetailViewController", bundle: nil)
|
|
}
|
|
}
|