I'm not sure how to solve this problem. This code runs in each cell every time the user scrolls and shows it in a UITableView:
self.isFinishedProcessing = NO;
[self setNeedsDisplay];
[self.mediaArray removeAllObjects];
self.mediaArray = [[NSMutableArray alloc] init];
dispatch_queue_t queue = dispatch_queue_create("setup_cell", NULL);
NSManagedObjectID *objectID = [self.entry objectID];
dispatch_async(queue, ^{
CoreDataStore *customStore = [CoreDataStore createStore];
Entry *entry = (Entry *)[customStore.context objectWithID:objectID];
if (self.cellInfo.numberOfMediaItems > 0) {
int i = 0;
int numberOfThumbnails = MIN(self.cellInfo.numberOfMediaItems, 3);
while (i < numberOfThumbnails) {
Media *media = [entry.media objectAtIndex:i];
UIImage *image = [media getThumbnail];
[self.mediaArray addObject:image];
i++;
}
}
dispatch_async(dispatch_get_main_queue(), ^{
self.isFinishedProcessing = YES;
[self setNeedsDisplay];
});
});
The core data store takes the Entry, which is a core data class, along with Media, and puts it in it's own context.
I haven't figured out exactly when this code crashes when scrolling, but it happens when scrolling up and down a few times.
EDIT: NSLog before 'object at index' says there is a count of 3. I actually did entry.media.count for that, to be sure.
Here's the error in full:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
Edit 2:
Still haven't solved this problem. I've added this on the end:
if (self.mediaArray.count != self.entry.media.count) {
NSLog(@"INCORRECT BECAUSE.... media array count: %i, entry media count: %i number of media items: %i", self.mediaArray.count, self.entry.media.count, self.cellInfo.numberOfMediaItems);
}
And it often crashes after a cell with something like this:
INCORRECT BECAUSE.... media array count: 1, entry media count: 3 number of media items: 3
Not sure how the media array count could possibly be wrong, if it's created relying on self.cellInfo.numberOfMediaItems.
Also worth noting that this only happens when done in a separate thread. Never in the main thread does it crash.
Media *media = [entry.media objectAtIndex:i]– noa Jun 2 '12 at 21:56numberOfMediaItemsset? – noa Jun 2 '12 at 21:57