gpt4 book ai didi

ios - 在 Swift 3 中将可选字符串转换为 double

转载 作者:IT王子 更新时间:2023-10-29 05:18:17 25 4
gpt4 key购买 nike


我有一个选项字符串,想将其转换为 double 。
这在 Swift 2 中有效,但自从转换为 Swift 3 后,我得到的值为 0。

var dLati = 0.0
dLati = (latitude as NSString).doubleValue

我检查过,latitude 有一个可选的字符串值,例如 -80.234543218675654,但 dLati 值为 0

*************** 好的,为清楚起见,新更新 ******************
我有一个 View Controller ,里面有一个按钮,当触摸按钮时,它会调用另一个 View Controller 并向它传递一些值这是第一个 View Controller 的代码

var currentLatitude: String? = ""
var currentLongitude: String? = ""
var deviceName = ""
var address = ""
// somewhere in the code, currentLatitude and currentLongitude are get set
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "map" {
let destViewController : MapViewController = segue.destination as! MapViewController
print(currentLongitude!) // Print display: Optional(-80.192279355363768)
print(currentLatitude!) // Print display: Optional(25.55692663937162)
destViewController.longitude = currentLongitude!
destViewController.latitude = currentLatitude!
destViewController.deviceName = deviceName
destViewController.address = address
}
}

这是名为 MapViewController 的第二个 View Controller 的代码

   var longitude: String? = " "
var latitude: String? = ""
.
.
override func viewDidLoad() {
if let lat = latitude {
print(lat) // Print display: optiona(25.55692663937162)
dLati = (lat as NSString).doubleValue
print(dLati) // Print display: 0.0
}
.
.
}

谢谢博尔纳

最佳答案

无需使用 Foundation 类型即可安全实现此目的的方法是使用 Double 的初始化器:

if let lat = latitude, let doubleLat = Double(lat) {
print(doubleLat) // doubleLat is of type Double now
}

关于ios - 在 Swift 3 中将可选字符串转换为 double ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40372656/

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