-1

I'm trying to address a slow scrolling and slow loading UIViewController that uses a UITableView with custom background cells.

When I don't set the backgroundView of the cell with an image, the performance is great. So I'm wondering if it's more performant to supply the backgroundView with images that are the actual size of my tableview row or is it better to use smaller images that are resized to fit the row's dimensions?

The images are all local and already included in the app - there's no remote fetching involved.

Improving load time of UITableView that has cells with custom background images

Community
  • 1
  • 1
Howard Spear
  • 551
  • 1
  • 5
  • 14

1 Answers1

0

Try to look to use an NSOperationQueue to handle lazy loading of images and a custom tableviewcell. Google for tweetie custom tableviewcell That should set you in the right direction.

Apple has a sample project for downloading images in tableViews: LazyTableImages

MrWaqasAhmed
  • 1,479
  • 12
  • 12