Swift 3 : URL Image makes UITableView scroll slow issue

前端 未结 4 741
死守一世寂寞
死守一世寂寞 2021-01-06 21:25

I have an extension to print image URL on UIImageView. But I think the problem is my tableView is so slow because of this extension. I think I need

4条回答
  •  失恋的感觉
    2021-01-06 21:29

    For caching image in background & scroll faster use SDWebImage library

     imageView.sd_setImage(with: URL(string: "http://image.jpg"), placeholderImage: UIImage(named: "placeholder.png"))
    

    https://github.com/rs/SDWebImage

提交回复
热议问题