From 1b292bc251b3dbef532dacad9705bd197ac4227b Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Thu, 24 Mar 2022 16:32:23 +1100 Subject: Reorganise into folder groups In preparation for presenters to come in largely, lots of files starting to go everywhere... --- foray/UIViewController+Extensions.swift | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 foray/UIViewController+Extensions.swift (limited to 'foray/UIViewController+Extensions.swift') diff --git a/foray/UIViewController+Extensions.swift b/foray/UIViewController+Extensions.swift deleted file mode 100644 index ee2c436..0000000 --- a/foray/UIViewController+Extensions.swift +++ /dev/null @@ -1,23 +0,0 @@ -// -// UIViewController+Extensions.swift -// foray -// -// Created by Nicholas Tay on 24/3/2022. -// - -import Foundation -import UIKit - -protocol HasCustomView { - associatedtype CustomView: UIView -} - -extension HasCustomView where Self: UIViewController { - internal var customView: CustomView { - guard let view = self.view as? CustomView else { - fatalError("Could not cast custom view") - } - - return view - } -} -- cgit