vote up 0 vote down star

I'm currently trying to fix the performance of my UITableView. Basically all it is is a custom UITableViewCell with a UIImageView.

At the moment, this image is loaded in the tableView:willDisplayCell: method, however the performance is pretty bad so I decided to try and load the image asynchronously using an NSThread, but this results in the UITableView looking really weird (it jumps all over the place and loads the images oddly).

Does anybody have the best way to load images in UITableViewCells?

flag
where you are loading images from? – Nava Carmon Nov 2 at 7:50
If you can post the code, it'll really help people to give you a better answer. – Sixten Otto Nov 2 at 15:38
I'm loading the images from my NSBundle (I've downloaded them previously because loading them over the internet was way too slow. – Alastair Nov 6 at 10:46

1 Answer

vote up 0 vote down check

Have you tried loading it in

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

and making it a reusable cell?

link|flag
Figured out that I wasn't reusing the cells properly. Moving it to - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath also helped. Thanks! – Alastair Nov 6 at 22:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.