Tusker/Tusker/Screens/Preferences/PreferencesTableViewControl...

19 lines
508 B
Swift
Raw Normal View History

2018-08-28 23:16:17 +00:00
//
// PreferencesTableViewController.swift
// Tusker
//
// Created by Shadowfacts on 8/28/18.
// Copyright © 2018 Shadowfacts. All rights reserved.
//
import UIKit
class PreferencesTableViewController: UITableViewController {
2018-10-02 23:23:50 +00:00
static func create() -> UINavigationController {
2018-08-28 23:16:17 +00:00
guard let navigationController = UIStoryboard(name: "Preferences", bundle: nil).instantiateInitialViewController() as? UINavigationController else { fatalError() }
return navigationController
}
}