我是Swift的新手,想知道如何从Async任务中获取值。我有一个函数在返回时从API获取Json数据我希望得到异步任务之外的特定字段的值...我的代码基本上我有一个名为 status 的变量我想在返回async被调用后得到 status 的值,然后我想检查值是否为1。在下面的代码中,返回的值是1,但是如果Status == 1 {} ,似乎在行之前执行了所调用的异步。如果值为One,那么我想导航到另一个ViewController。任何建议都会很棒...我显然无法将代码放到异步代码中的不同ViewController中,因为它被多次调用。
func GetData() {
var status = 0
// Code that simply contains URL and parameters
URLSession.shared.dataTask(with:request, completionHandler: {(data, response, error) in
if error != nil {
print("Error")
} else {
do {
let parsedData = try JSONSerialization.jsonObject(with: data!, options: .allowFragments) as! [String:Any]
DispatchQueue.main.async {
if let Replies = parsedData["Result"] as? [AnyObject] {
for Stream in Replies {
if let myvalue = Stream["status"] as? Int {
status = myvalue
}
}
}
}
} catch let error as NSError {
print(error)
}
}
}).resume()
if status == 1 {
// This code is executed before the async so I don't get the value
let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "Passed") as! Passed
self.present(nextViewController, animated:false, completion:nil)
}
}
答案 0 :(得分:1)
您可以像这样使用回调函数:
func GetData(callback: (Int) -> Void) {
//Inside async task, Once you get the values you want to send in callback
callback(status)
}
您将从调用该函数的位置获得回调。
根据您的情况,Anbu的答案也会有效。