NewsBlur/clients/ios/Classes/StoryDetailViewController.swift
David Sinclair 2549a4cec5 #817 (three column layout)
- Lots more progress on the detail view and other areas.
2020-10-30 20:58:27 -07:00

22 lines
628 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.
///
/// - Parameter pageIndex: The page index of the story.
convenience init(pageIndex: Int) {
self.init(nibName: "StoryDetailViewController", bundle: nil)
self.appDelegate = NewsBlurAppDelegate.shared()
self.pageIndex = pageIndex
}
}