Skip to content

Instantly share code, notes, and snippets.

@MartinJNash
Created June 7, 2014 19:07
Show Gist options
  • Save MartinJNash/3ce49f4ae48190bc1fe1 to your computer and use it in GitHub Desktop.
Save MartinJNash/3ce49f4ae48190bc1fe1 to your computer and use it in GitHub Desktop.
Swift prepare for segue
override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!)
{
if let vc = segue.destinationViewController as? CreateNoteViewController {
println("Create Note VC")
}
if let vc = segue.destinationViewController as? SingleNoteViewController {
println("Show single note")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment