所以我使用URLRequest()下载JSON文件。 我解析它以获取特定的字符串,我想将我在ViewController中的标签文本设置为该特定字符串。 我使用CompletionHandler来检索从另一个Swift文件获取JSON文件的函数。
以下是调用函数和设置标签的代码:
class SecondViewController: UIViewController {
tr = TransportServices()
tr.getLyftData(origin: originstring, destination: destinationstring){ json in
//Parsing JSON in order to get specific data
self.lyftlabel.text = stringexample
}
}
这是获取JSON的代码
func getLyftData(origin: String, destination: String, completionHandler: @escaping ([String: Any]) -> ()){
let urlrequest = URLRequest(url: URL(string: urlstring)!)
let config = URLSessionConfiguration.default
let sessions = URLSession(configuration: config)
let task = sessions.dataTask(with: urlrequest) {(data, response, error) in
guard error == nil else {
print(error!)
return
}
guard let responseData = data else {
print("error, did not receive data")
return
}
do {
if let json = try JSONSerialization.jsonObject(with: responseData, options: []) as? [String: Any]{
completionHandler(json)
}
}
catch {
print("Error with URL Request")
}
}
task.resume()
}
这可以完成这项任务,但速度很慢。我知道存在运行时问题,因为UILabel.text只能从主线程设置,但我不知道任何其他方法来解决它。请帮忙。
答案 0 :(得分:1)
如果要在主线程中设置标签文本,请使用:
DispatchQueue.main.async {
self.lyftlabel.text = stringexample
}