I have some custom table view cells that takes a while to draw, so the first time you scroll it's not very smooth. After the first scroll, all the views are cached and the scrolling is very smooth.
So what I'm wondering is if I could draw all the cells and cache them before the table view is shown and how I would do that. Would there be a problem if I spawned a thread that drew the cells in the background, so that they likely would be drawn when the table view needs them?
Would I have to set up my own dictionary or could I use the table view's dequeueReusableCellWithIdentifier:?