gpt4 book ai didi

ios - 在 2 个 ViewController 之间传递数据

转载 作者:可可西里 更新时间:2023-11-01 00:56:53 25 4
gpt4 key购买 nike

<分区>

我正在尝试将数据从我的第一个 ViewController 发送到我的第二个。

使用简单的 Int 可以正常工作,但是使用 Double 就不行,我不明白为什么。因此,如果您能解释为什么它不起作用,那就太棒了!

我在第一个 ViewController 中的声明:

var time: Double? = 0.00

然后我尝试将它发送到我的另一个 ViewController:

let vc = segue.destination as! MySecondViewController
vc.rows = rows[pathForAVC]
vc.lap = lap[pathForAVC]
vc.indexPath = pathForAVC
vc.time = rows[pathForAVC]["Time"]! as! Double

fatal error: unexpectedly found nil while unwrapping an Optional value

还有我的第二个 ViewController:

var time: Double? = 0.00
topLabel.text = "\(time!)"

注意:

rows 是一个字典:

var rows: [[String : AnyObject]] = [[:]]

我真的不明白我的错误...

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com