Skip to content

Instantly share code, notes, and snippets.

@omaralbeik
Last active April 7, 2018 21:45
Show Gist options
  • Save omaralbeik/9c47db25d7f4885d6c7c8da05939b1c4 to your computer and use it in GitHub Desktop.
Save omaralbeik/9c47db25d7f4885d6c7c8da05939b1c4 to your computer and use it in GitHub Desktop.
ViewController.swift
import UIKit
class ViewController<V: View>: UIViewController {
override func loadView() {
view = V()
}
var customView: V {
return view as! V
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment