Hi there,
I'm using several images to style UITableViewCells and I want to make sure I'm doing things correctly, firstly to ensure good memory management, and secondly to make sure things are as fast as possible (I'm having troubles with the sluggyness of the scrolling!).
I know that using [UIImage imageNamed:] will cache the images for speed, so is it okay to use that for getting all my images? Or is it better to only call that once per UITableViewController and store the image as an instance variable, reusing the same UIImage object for all my cells?
I'm using transparent PNGs and clear coloured views in my table and cells to get the look I'm going for. Are there any tips on ensuring it renders as quick as possible to make sure the table view scrolling is smooth? At the moment I only have about 10 rows (cells) and it's already quite sluggish. I'm using a fetched results controller to get my data so I don't think it could be that causing it.
Many thanks,
Michael