i try to importer more than 7.000 contacts to CoreData through, now i try to using a thread but the app crash

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 

NSLog(@"threadSendToBackground");
for (NSDictionary *contactDetail in [[xmlDictionary valueForKey:@"response"] valueForKey:@"entry"]) {

    Contacts *AddCDContacts = (Contacts *)[NSEntityDescription insertNewObjectForEntityForName:@"Contacts" inManagedObjectContext:appDelegate.managedObjectContext];

    [AddCDContacts setDisplayName:[contactDetail valueForKey:@"displayName"]];

    NSError *error;
    if (appDelegate.managedObjectContext != nil) {
        if ([appDelegate.managedObjectContext hasChanges] && ![appDelegate.managedObjectContext save:&error]) {
            // Handle the error.
            NSLog(@"Error saving");
        } 
    }        
}

[pool release];  
link|improve this question
feedback

3 Answers

Have you read the Core Data article (Efficiently Importing Data) that deals with this? It will provide you with plenty of tips that you may find useful in this regard.

link|improve this answer
good link thanks – Jonathan Ramirez Aug 9 '11 at 14:04
feedback

Don't save the context in the for loop, just save it once at the end. Also, especially on devices with limited memory, try to reuse objects instead of assigning new constantly.

link|improve this answer
ok , thanks for the advice – Jonathan Ramirez Aug 9 '11 at 14:02
No problem! Have you tried removing the multiple save? I'm pretty sure that's what's causing the crash of your app. – Remy Vanherweghem Aug 9 '11 at 19:05
feedback

You should never use a managed object context on more than one thread. If you're using Core Data in a background thread, you must create a separate NSManagedObjectContext for that thread.

Definitely read the Core Data and Concurrency chapter in the Core Data Programming Guide, you will shoot yourself in the foot otherwise.

link|improve this answer
thanks i will check – Jonathan Ramirez Aug 9 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.