gpt4 book ai didi

swift - 在 View Controller 之间传递数据

转载 作者:行者123 更新时间:2023-11-30 13:03:16 24 4
gpt4 key购买 nike

我试图在 View Controller 之间传递数据,其值是 slider 的值,但它不起作用。这是我的代码 ViewController1

ViewController2

最佳答案

您的代码总是会失败,因为您试图从 Double 转换为 String。在 Swift 中执行此操作会给出以下消息:

Cast from 'Double' to unrelated type 'String' always fails

您需要做的是将代码行更改为:

 destination.myString = sender as? String

至:

 destination.myString = String(format:"%f", sender)

 destination.myString = "\(sender)"

关于swift - 在 View Controller 之间传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39674784/

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