gpt4 book ai didi

json - Swift Alamofire JSON 解析

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

我正在使用 Alamofire 进行 JSON 解析。我可以从网络服务获取数据。我想设置标签。我可以使用“print()”函数打印任何数据。但我无法设置标签。请帮助我。

我的代码在这里。

        Alamofire.request(.GET, "url").validate().responseJSON { response in
switch response.result {
case .Success:
if let value = response.result.value {
let jsonObject = JSON(value)

// this row is working.
print(jsonObject["Title"].stringValue)
// i can not print to label here
if let titleValue = jsonObject["Title"].string {
self.newsTitleLabel.text = titleValue
}


}
case .Failure(let error):
print(error)
}
}

//print result:
Bolu Dağı'nda bayram tatili yoğunluğu
//if blok:
fatal error: unexpectedly found nil while unwrapping an Optional value

最佳答案

您的意思是崩溃发生在 self.newsTitleLabel.text = titleValue 线上,对吧?确保您的 newsTitleLabel 确实存在,或者是 IBOutlet/变量。

关于json - Swift Alamofire JSON 解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38121742/

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