Cache tableView Cell data
问题 In my application I'm downloading some images using the URL and put them in the cell.imageView[indexPath.row] (it's a custom cell with an imageView inside). I can see two cells at a time and I noticed that the method func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> CustomCell { } It's called every time the cell will be displayed. So my app continue to download the image from the server and the app result very slow. I would like to know if it's possible