Swift version: 5.6
Segues are visual connectors between view controllers in your storyboards, shown as lines between the two controllers. They allow you to present one view controller from another, optionally using adaptive presentation so iPads behave one way while iPhones behave another.
When a segue is triggered – perhaps through a button press or a table view selection – the prepare(for:)
method will be called on your view controller, at which point you can configure your destination view controller by setting some properties.
For example, you might write something like this in response to a table view selection:
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
guard let selectedPath = tableView.indexPathForSelectedRow else { return }
if let target = segue.destination as? UserViewController {
target.selectedUser = selectedPath.row
}
}
That finds the row that was tapped, typecasts the destination to be a UserViewController
, then tells it which row was selected.
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until October 1st.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 5.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.