Ok, I've got a UITableView
with custom UITableViewCell
s that each contain a UIImageView
whose images are being downloaded asynchronously via an NSURLConnection
. All pretty standard stuff...
The issue is, when the table scrolls, the new images are downloaded in the background correctly but not RENDERED until the table stops moving.
How do I get the table to render it's content even when it's moving? Thanks.
-- UPDATE --
After a closer look, I'm finding that the NSURLConnection
delegate methods aren't firing until the table stops scrolling. Not sure why. Any help would be great.