Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save victor-pavlychko/e695ad40d33c43806a6f1d9c465e4ce0 to your computer and use it in GitHub Desktop.
Save victor-pavlychko/e695ad40d33c43806a6f1d9c465e4ce0 to your computer and use it in GitHub Desktop.
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
switch segue.destination {
case let destination as AnotherViewController:
destination.delegate = self
default:
fatalError("Unexpected segue: `\(self)` -> `\(segue.destination)`")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment