Skip to content

Instantly share code, notes, and snippets.

@barrault01
Last active April 25, 2017 16:43
Show Gist options
  • Save barrault01/16a9af287294daac538ad8766b7802a6 to your computer and use it in GitHub Desktop.
Save barrault01/16a9af287294daac538ad8766b7802a6 to your computer and use it in GitHub Desktop.
protocol MyProtocol {
func anOptionalMethod()
func aNotOptionalMethod()
}
extension MyProtocol {
func anOptionalMethod() {
//this is a empty implementation to allow this method to be optional
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment