在背景中加载图片时,如何保持文本填充tableview单元格

时间:2019-06-07 19:43:29

标签: ios swift uitableview uiimage

我从存储在数组中的api中读取两个属性(名称和图像)。我知道如何在表中显示它们,但是我不知道在显示名称后如何使表移动到下一行而不等待图像加载。我想让图片加载到后台并在完成时显示它。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("customcell", forIndexPath: indexPath) as! UITableViewCell
//when i get text move on next cell not waiting for image to be loaded
        cell.textLabel?.text = myarray[indexPath.item].name
//make this image loading in background
         cell.imageView?.image = myarray[indexPath.item].image
        return cell
    }

这是图片: enter image description here

0 个答案:

没有答案