cell imageView in UITableView doesn't appear until selected
Here is a video of the problem: http://youtu.be/Jid0PO2HgcU I have a problem when trying to set the image for the [cell imageView] in a UITableView from the asset library. The image is loaded but it doesn't appear in the cell until I touch (select) that cell. Here is my code that sets the imageView of the cell: //Start loading the image using the image path NSString *path = [occasion imagePath]; if (path != nil && [path hasPrefix:@"ass"]) { NSLog(@"photo loaded from assets library"); //testing ALAssestLibrary ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];