This is the exception description:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Application Specific Information:
abort() called
This is the method:
- (void)setImageCell:(nameCell *)nameCell forbox:(box *)box forAccount:(Account *)account {
NSMutableArray *mailCells = [self.name2NameCells valueForKey:name];
if (nameCells != nil) {
[nameCells addObject:nameCell];
} else {
nameCells = [NSMutableArray array];
[nameCells addObject:nameCell];
[self.name2NameCells setValue:nameCells forKey:name.lowercaseString];
}
The account is needed for logging, but the method is shortened to post it here.