Created
July 26, 2017 12:14
-
-
Save MaciejGad/74aaa503d4c9e67b76764dca6cca13b8 to your computer and use it in GitHub Desktop.
NibBaseViewController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import UIKit | |
enum NibBaseError:Error { | |
case badClassName | |
case noNibFile | |
case noStoryboard | |
} | |
class NibBaseViewController: UIViewController, IsNibBaseViewController { | |
required init(_ : Void) throws { | |
let classNameComponents = NSStringFromClass(type(of: self)).components(separatedBy: ".") | |
guard let className = classNameComponents.last else { | |
throw NibBaseError.badClassName | |
} | |
let bundle = Bundle(for:type(of:self)) | |
guard bundle.path(forResource: className, ofType: "nib") != nil else { | |
throw NibBaseError.noNibFile | |
} | |
super.init(nibName:className, bundle: Bundle(for:type(of:self))) | |
} | |
required init?(coder aDecoder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} | |
var isNavigationBarHidden:Bool? { | |
return nil | |
} | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
} | |
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated) | |
if let isNavigationBarHidden = isNavigationBarHidden { | |
navigationController?.setNavigationBarHidden(isNavigationBarHidden, animated: true) | |
} | |
} | |
} | |
protocol HavingRequiredThrowingInit { | |
init(_ : Void) throws | |
} | |
protocol IsNibBaseViewController: HavingRequiredThrowingInit, IsViewController {} | |
protocol IsViewController { | |
func asViewController() -> UIViewController | |
} | |
extension UIViewController: IsViewController { | |
func asViewController() -> UIViewController { | |
return self | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment