i want to insert a previously created NSManagedObject which has some string attributes into my NSManagedObjectContext via the insertObject method. This seems to work without error but when i reload the saved object again all my string attributes are null.
I have created my entity with:
[[NSManagedObject alloc] initWithEntity:description
insertIntoManagedObjectContext:nil];
Thanks for any constructive feedback.