我从存储在数组中的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
}