Passing Data between View Controllers in Swift

Let’s assumed we stand at the firstView go to the DetailView and want passing data from firstView to Detailview. To do that with storyboard, at the firstView we will have a method: override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) { if (segue.identifier == “segueTest”) { //Checking identifier is crucial as there might be multiple // segues … Read more