Alamofire http json请求块ui [英] Alamofire http json request block ui

查看:128
本文介绍了Alamofire http json请求块ui的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在创建一个从JSON脚本中检索对象的函数。我选择使用alamofire进行异步请求,使用swiftyJSON进行简单的解析。但是我似乎有阻止UI的问题?当它是异步请求时怎么会这样呢?我是否需要在单独的线程上运行它或解释是什么?

I've been creating a function which retrieve objects from a JSON script. I've chosen for this to use alamofire for async request and swiftyJSON for easy parsing. However i seem to have a problem with it blocking the UI? How come it does that when it is async request? Do i need to run it on a separate thread or what could the explanation be?

基本上我的意思是阻止UI是它在其他按钮之前没有反应下面的函数已经完成执行。

Basically what i mean by blocking UI is that it does not react on other buttons before the below function is finished executing.

func getRecent() {


    var url = "http://URL/recent.php?lastid=\(lastObjectIndex)&limit=\(numberOfRecordsPerAPICall)"


    isApiCalling = true
    request(.GET, url, parameters: nil)
        .response { (request, response, data, error) in
            if error == nil {

        let data: AnyObject = data!
        let jsonArray = JSON(data: data as! NSData)
        if jsonArray.count < self.numberOfRecordsPerAPICall {
            self.recentCount = 0
            self.tableVIew.tableFooterView = nil
        } else {
            self.recentCount = jsonArray.count
            self.tableVIew.tableFooterView = self.footerView
        }
        for (key: String, subJson: JSON) in jsonArray {
            // Create an object and parse your JSON one by one to append it to your array
            var httpUrl = subJson["image_url"].stringValue
            let url = NSURL(string: httpUrl)
            let data = NSData(contentsOfURL: url!)

            if UIImage(data: data!) != nil {

            // Create an object and parse your JSON one by one to append it to your array
            var newNewsObject = News(id: subJson["id"].intValue, title: subJson["title"].stringValue, link: subJson["url"].stringValue, imageLink: UIImage(data: data!)!, summary: subJson["news_text"].stringValue, date: self.getDate(subJson["date"].stringValue))







            self.recentArray.append(newNewsObject)

            }
        }

        self.lastObjectIndex = self.lastObjectIndex + self.numberOfRecordsPerAPICall
        self.isApiCalling = false
        self.tableVIew.reloadData()
        self.refreshControl?.endRefreshing()

        }
        }

}


推荐答案

响应闭包在主线程上执行。如果你正在那里进行JSON解析(并且你有大量的数据)它会阻塞主线程一段时间。

The response closure is executed on the main thread. If you are doing your JSON parsing there (and you have a large amount of data) it will block the main thread for a while.

在这种情况下,你应该使用 dispatch_async 用于JSON解析,并且只有在完成后才更新主线程。

In that case, you should use dispatch_async for the JSON parsing and only when you are completed update the main thread.

只需像这样进行解析

func getRecent() {

var url = "http://URL/recent.php?lastid=\(lastObjectIndex)&limit=\(numberOfRecordsPerAPICall)"


isApiCalling = true
request(.GET, url, parameters: nil)
    .response { (request, response, data, error) in
        if error == nil {

    let priority = DISPATCH_QUEUE_PRIORITY_DEFAULT
    dispatch_async(dispatch_get_global_queue(priority, 0)) {

        // Parse stuff here

        let data: AnyObject = data!
        let jsonArray = JSON(data: data as! NSData)
        if jsonArray.count < self.numberOfRecordsPerAPICall {
            self.recentCount = 0
            self.tableVIew.tableFooterView = nil
        } else {
            self.recentCount = jsonArray.count
            self.tableVIew.tableFooterView = self.footerView
        }
        for (key: String, subJson: JSON) in jsonArray {
            // Create an object and parse your JSON one by one to append it to your array
            var httpUrl = subJson["image_url"].stringValue
            let url = NSURL(string: httpUrl)
            let data = NSData(contentsOfURL: url!)

            if UIImage(data: data!) != nil {

            // Create an object and parse your JSON one by one to append it to your array
            var newNewsObject = News(id: subJson["id"].intValue, title: subJson["title"].stringValue, link: subJson["url"].stringValue, imageLink: UIImage(data: data!)!, summary: subJson["news_text"].stringValue, date: self.getDate(subJson["date"].stringValue))

            self.recentArray.append(newNewsObject)
            }
        }

        dispatch_async(dispatch_get_main_queue()) {

            // Update your UI here

            self.lastObjectIndex = self.lastObjectIndex + self.numberOfRecordsPerAPICall
            self.isApiCalling = false
            self.tableVIew.reloadData()
            self.refreshControl?.endRefreshing()
        }
    }
    }
    }
}

这篇关于Alamofire http json请求块ui的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆