Skip to content

Instantly share code, notes, and snippets.

@ethanjdiamond
Created January 29, 2017 19:39
Show Gist options
  • Save ethanjdiamond/6a2453b84f8f5718be5a6ebcef52e6af to your computer and use it in GitHub Desktop.
Save ethanjdiamond/6a2453b84f8f5718be5a6ebcef52e6af to your computer and use it in GitHub Desktop.
protocol Presentable: class {
var viewController: UIViewController { get }
}
protocol Presenter: Presentable {
}
extension UIViewController: Presenter {
var viewController: UIViewController { return self }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment