tableview使应用程序变慢,并花时间获取数据 - swiftyJSON

时间:2016-08-05 08:32:37

标签: ios swift uitableview alamofire swifty-json

我正在尝试使用swiftyJSON / Almofire从url获取数据:

这是我的代码:

import UIKit
import Alamofire
import SwiftyJSON

 class NewsTableViewController: UITableViewController {


var arrRes = [[String:AnyObject]]() //Array of dictionary

override func viewDidLoad() {
    super.viewDidLoad()


    Alamofire.request(.GET, "myURL**").responseJSON { (responseData) -> Void in
        if((responseData.result.value) != nil) {
            let swiftyJsonVar = JSON(responseData.result.value!)
            print(swiftyJsonVar)
            if let resData = swiftyJsonVar[].arrayObject {
                self.arrRes = resData as! [[String:AnyObject]]
            }
            if self.arrRes.count > 0 {
                self.tableView.reloadData()
            }
        }
        }


    self.navigationController?.navigationBar.tintColor = UIColor(red:0.47, green:0.07, blue:0.55, alpha:1.00)

}


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

   let cell = tableView.dequeueReusableCellWithIdentifier("bCell", forIndexPath: indexPath) as! TableViewCell

    var dict = arrRes[indexPath.row]

    if let strImage = arrRes[indexPath.row]["image"] as? String{
        if let data = NSData(contentsOfURL: NSURL(string:strImage.encodeUTF8()!)!) {
            cell.imgView.image = UIImage(data: data)
        }
    }


    cell.titleLabel?.text = dict["title"] as? String
    return cell

}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
    return arrRes.count
}
当我滚动时,tableview变得如此慢,获取数据需要时间!你知道它为什么会这样, 我也遵循了教程,他没有提到为什么他在这里使用Almofire,你怎么称呼从JSON url获取数据?它被称为“REST API”?所以我可以很好地搜索它,并且因为我是初学者而有一个良好的开端。

1 个答案:

答案 0 :(得分:2)

因为你在主线程中从URL获取了Image:

        if let data = NSData(contentsOfURL: NSURL(string:strImage.encodeUTF8()!)!) {
            cell.imgView.image = UIImage(data: data)
        }

你应该在后台线程中执行它,当你将数据返回到主线程时:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{
       if let data = NSData(contentsOfURL: NSURL(string:strImage.encodeUTF8()!)!) {
             dispatch_async(dispatch_get_main_queue(), ^{
                image = UIImage(data: data)
            });
        }
});