我有一个PFQueryTableViewController,我正在加载图像,但是当我执行我的表视图时,滚动速度非常慢或有时根本不滚动。但是当我删除代码以在后台加载图像时,表格视图会正常滚动。我正在后台加载PFImageView,所以我不知道它为什么滚动这么慢。
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath, object: PFObject?) -> PFTableViewCell? {
let cell = tableView.dequeueReusableCell(withIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! ProductTableViewCell
if let files : [PFFile] = object?["Images"] as? [PFFile] {
cell.ProductImage.file = files.first
cell.ProductImage.loadInBackground()
}
}