我有一个名为 name 的变量,带有字符串“Magellan”,需要添加到每个 VC 的 nameLabel 中。
在第一个 VC 中:
var name = "Magellan"
第一个VC为segue做准备:
destination?.nameLabel.text = name!
destination?.name = name!
在第二个VC中:
var name = String()
第二个VC为segue做准备:
destination?.nameLabel.text = name!
destination?.name = name!
在第二个 VC 中转到第三个 VC:
Error: Unexpectedly found nil unwrapping nameLabel.text
Error: Unexpectedly found nil unwrapping name