20 lines
406 B
Swift
20 lines
406 B
Swift
//
|
|
// StoryboardInitable.swift
|
|
// VDSSample
|
|
//
|
|
// Created by Matt Bruce on 8/2/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
protocol StoryboardInitable {
|
|
static var storyboardId: String { get }
|
|
}
|
|
|
|
extension StoryboardInitable {
|
|
static func instantiate() -> UIViewController {
|
|
return UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: Self.storyboardId)
|
|
}
|
|
}
|