I have a variable named name with string "Magellan" that needs to be added to each VC's nameLabel.
In first VC:
var name = "Magellan"
First VC prepare for segue:
destination?.nameLabel.text = name!
destination?.name = name!
In second VC:
var name = String()
Second VC prepare for segue:
destination?.nameLabel.text = name!
destination?.name = name!
In second VC to go to third VC:
Error: Unexpectedly found nil unwrapping nameLabel.text
Error: Unexpectedly found nil unwrapping name