Skip to content

Instantly share code, notes, and snippets.

@ezfe
Created July 20, 2015 19:44
Show Gist options
  • Save ezfe/c9e79a960b5c790edfe4 to your computer and use it in GitHub Desktop.
Save ezfe/c9e79a960b5c790edfe4 to your computer and use it in GitHub Desktop.
override func prepareForSegue(segue: NSStoryboardSegue, sender: AnyObject?) {
if let sender = sender as? NSButton {
if let destination = segue.destinationController as? DeathViewController, cPerson = self.currentPerson() {
destination.person = cPerson
return
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment