Created
January 18, 2016 17:19
-
-
Save ksmandersen/a1a508d3a4db67f711fb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 UIKit | |
class GenericViewController: UIViewController { | |
var contentView: GenericView { | |
return view as! GenericView | |
} | |
init() { | |
super.init(nibName: nil, bundle: nil) | |
} | |
required init?(coder aDecoder: NSCoder) { | |
fatalError() | |
} | |
override func loadView() { | |
view = GenericView() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment