Skip to content

Instantly share code, notes, and snippets.

@kevinvavelin
Created July 6, 2014 10:47
Show Gist options
  • Save kevinvavelin/5dd1afaeba91e80bf936 to your computer and use it in GitHub Desktop.
Save kevinvavelin/5dd1afaeba91e80bf936 to your computer and use it in GitHub Desktop.
func doSomethingWithDelegate() {
if delegate as? MyProtocol {
delegate.method()
}
}
OR TRY
func doSomethingwithDelegate() {
delegate?.method()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment