Completion Handler 完成前为真

Completion Handler True before completed

所以我有一个函数可以从 API 获取引用和作者。我有一个完成处理程序,这样我就可以获得引用和作者,然后在 Viewdidload 函数中将它们设置为各自的 UILabel。但出于某种原因,引用和作者都没有出现。处理程序出了什么问题?

    func getJSON(completionHandler: @escaping(CompletionHandler)){
    if let quoteURL = URL(string: "http://quotes.rest/qod.json")

    {
        let session = URLSession.shared


        let task = session.dataTask(with: quoteURL)
        { (data, response, error) -> Void in
            if data != nil
            {
                let quoteData = JSON(data: data!)

                self.quote = quoteData["contents"]["quotes"][0]["quote"].stringValue
                self.author = quoteData["contents"]["quotes"][0]["author"].stringValue


            }
        }
        task.resume()
    }
     completionHandler(true)
}

调用Viewdidload()中的函数

        self.getJSON(completionHandler: {(success)-> Void in

        if(success){
            self.quoteLabel.text = "\(self.quote ?? "") - \(self.author ?? "")"
        }
    })

Swift 不允许您在后台进程中设置 UILabel 文本,这就是为什么我不能在 getJSON() 中这样做的原因 谢谢

您需要将其插入到回调中

func getJSON(completionHandler: @escaping(CompletionHandler)){
    if let quoteURL = URL(string: "http://quotes.rest/qod.json") 
    {
        let session = URLSession.shared 
        let task = session.dataTask(with: quoteURL)
        { (data, response, error) -> Void in
            if data != nil
            {
                let quoteData = JSON(data: data!)

                self.quote = quoteData["contents"]["quotes"][0]["quote"].stringValue
                self.author = quoteData["contents"]["quotes"][0]["author"].stringValue 

                completionHandler(true) // set it inside the callback
            }
            else {
                completionHandler(false)
            }
        }
        task.resume()
    }
    else {
         completionHandler(false)
    }
}