gpt4 book ai didi

ios - 将字符串转换为整数 iOS + Swift 2.0

转载 作者:搜寻专家 更新时间:2023-11-01 05:47:39 25 4
gpt4 key购买 nike

我正在访问天气 API,当我解析 JSON 时,结果是一个字符串。因为,我正在访问的值是一个数字,我想将它转换为一个整数,但是当字符串有一个十进制值时,该字符串不会转换为一个 int。我的代码:

let UVIndex = swiftyJSON["current_observation"]["UV"].stringValue
let cityName = swiftyJSON["current_observation"]["display_location"]["full"].stringValue
if let UVIndexInt = Int(UVIndex) {
print("Successfully converted! \(UVIndexInt)")
self.UVIndexString = String(stringInterpolationSegment: UVIndex)
}
dispatch_async(dispatch_get_main_queue()) {
self.UVIndexButton.setTitle(self.UVIndexString, forState: UIControlState.Normal)
self.cityName.text = cityName
}

最佳答案

您可以尝试将 String 转换为 Double,然后再转换为 Int

let text = "1.1"

if let textAsDouble = Double(text) {
let textAsInt = Int(textAsDouble)
print(textAsInt)
}

关于ios - 将字符串转换为整数 iOS + Swift 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35089721/

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