Skip to content

Instantly share code, notes, and snippets.

@wh1pch81n
Created February 12, 2017 16:00
Show Gist options
  • Save wh1pch81n/daf833074b0fe642f93b5062cd62f72b to your computer and use it in GitHub Desktop.
Save wh1pch81n/daf833074b0fe642f93b5062cd62f72b to your computer and use it in GitHub Desktop.
protocol SpecialProtocol: class {
func specialMethod(_ vc: ViewController)
}
class VCCustomizer: NSObject, SpecialProtocol {
func specialMethod(_ vc: ViewController) {
// Special implementation
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment