gpt4 book ai didi

ios - swift : Cast wrapped value

转载 作者:行者123 更新时间:2023-11-28 13:17:54 25 4
gpt4 key购买 nike

<分区>

我正在尝试将包装值从字符串转换为 float ,但我无法做到。我想我缺少关于 swift 中整个包装/展开 (?/!) 的一些知识。

我正在尝试从标签中获取文本。

这是我的标签:

@IBOutlet weak var maxDistance: UILabel!

这是我尝试过的:

var max = Float(maxDistance.text)!
--> Could not find an overload for 'init' that accepts the supplied arguments

var max = Float(maxDistance.text!)
--> Cannot invoke 'init' with an argument of type '@lvalue String'

var max = Float(maxDistance!.text)
--> Cannot invoke 'init' with an argument of type '@lvalue String?'

var max = Float(maxDistance?.text)
--> Cannot invoke 'init' with an argument of type '$T4??'

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