Ios 加载图像使我的tableview变慢

Ios 加载图像使我的tableview变慢,ios,swift,uitableview,Ios,Swift,Uitableview,我从json url获取数据,但当我想加载图像时,速度非常慢 class NewsTableViewController: UITableViewController { var ids = [String]() var titles = [String]() var descriptions = [String]() var images = [String]() var links

我从json url获取数据,但当我想加载图像时,速度非常慢

class NewsTableViewController: UITableViewController {

    var ids             = [String]()
    var titles          = [String]()
    var descriptions    = [String]()
    var images          = [String]()
    var links           = [String]()
    var dates           = [String]()


    @IBOutlet var table_news: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()
        table_news.delegate = self
        getNews()

        // Uncomment the following line to preserve selection between presentations
        // self.clearsSelectionOnViewWillAppear = false

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    // MARK: - Table view data source

    override func numberOfSections(in tableView: UITableView) -> Int {
        // #warning Incomplete implementation, return the number of sections
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete implementation, return the number of rows
        return self.ids.count
    }


    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell:NewsTableViewCell = self.tableView.dequeueReusableCell(withIdentifier: "news_cell") as! NewsTableViewCell


        cell.lbl_date.text = self.dates[indexPath.row]
        cell.lbl_title.text = self.titles[indexPath.row]

        var des = self.descriptions[indexPath.row]

        if des.characters.count > 200 {
            let range =  des.rangeOfComposedCharacterSequences(for: des.startIndex..<des.index(des.startIndex, offsetBy: 200))
            let tmpValue = des.substring(with: range).appending("...")

            cell.lbl_des.text = tmpValue
        }


        DispatchQueue.main.async{
            cell.img_news.setImageFromURl(stringImageUrl: self.images[indexPath.row])

        }

        return cell
    }


    /*
    // Override to support conditional editing of the table view.
    override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        // Return false if you do not want the specified item to be editable.
        return true
    }
    */

    /*
    // Override to support editing the table view.
    override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
        if editingStyle == .delete {
            // Delete the row from the data source
            tableView.deleteRows(at: [indexPath], with: .fade)
        } else if editingStyle == .insert {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
        }    
    }
    */

    /*
    // Override to support rearranging the table view.
    override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) {

    }
    */

    /*
    // Override to support conditional rearranging of the table view.
    override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
        // Return false if you do not want the item to be re-orderable.
        return true
    }
    */

    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Get the new view controller using segue.destinationViewController.
        // Pass the selected object to the new view controller.
    }
    */

    func getNews() {
        RestApiManager.sharedInstance.getNews { (json: JSON) in

            if let results = json.array {
                for entry in results {


                  self.ids.append(entry["id"].string!)
                  self.titles.append(entry["title"].string!)
                  self.descriptions.append(entry["description"].string!)
                  self.images.append(entry["images"].string!)
                  self.links.append(entry["link"].string!)
                  self.dates.append(entry["date"].string!)

                }



                DispatchQueue.main.async{
                    self.table_news.reloadData()
                }


            }

        }

    }

}

我使用的是
扩展名
图像视图。

您提到的缓慢问题在UIImageView扩展名中

extension UIImageView{

    func setImageFromURl(stringImageUrl url: String){

        if let url = NSURL(string: url) {
            if let data = NSData(contentsOf: url as URL) {
                self.image = UIImage(data: data as Data)
            }
        }
    }
}
NSData(contentsOf:url作为url)
中,您正在从网络同步检索url的内容,从而阻塞主线程。您可以使用带有异步回调的NSURLSession或使用某些第三方库(可能是使用最多且经过战斗测试的库)下载内容

extension UIImageView{

    func setImageFromURl(stringImageUrl url: String){

        if let url = NSURL(string: url) {
            if let data = NSData(contentsOf: url as URL) {
                self.image = UIImage(data: data as Data)
            }
        }
    }
}