0

我有一个名为 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
4

1 回答 1

-1
于 2019-11-20T04:42:07.700 回答