Skip to content

Instantly share code, notes, and snippets.

@diversario
Last active January 23, 2016 02:29
Show Gist options
  • Save diversario/3ee3d9527ca1a9b92e9b to your computer and use it in GitHub Desktop.
Save diversario/3ee3d9527ca1a9b92e9b to your computer and use it in GitHub Desktop.
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
performSegueWithIdentifier(“mySegueName”, sender: "hello!")
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if let vc = segue.destinationViewController as? DestVC {
vc.dataFromAnotherVC as? String
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment