Objective C Custom Lazy Load Images UITableView Cell
First time loading remote images into an iPhone app, and would like some help optimizing the process. What I've currently done is get the image if it doesn't exist, and cache it. The major goals are to: only load images when needed. save images for future use to reduce data consumption, and allow the user to have a somewhat functional app when not connected to the internet. I just don't think I'm doing it well enough. Here's a snippet of the code within tableView:cellForRowAtIndexPath: MVImageCell * cell = (MVImageCell *)[tableView dequeueReusableCellWithIdentifier:@"PicsAndVideosCell"]; //