I have a project that uses coredata and i am attmepting to delete from what i have stored. But i keep getting this error.
An NSManagedObjectContext cannot delete objects in other contexts.
I looked at what apple had to say and from what i can tell i have it correct, but something is still off. Any suggestions? Thx!
for (UserNumber *info in pinNumberArray) {
NSSet *time = [[NSSet alloc] initWithSet:info.Times];
for (ErgTimes *ergTimes in time){
NSMutableArray *temp = [[NSMutableArray alloc] initWithObjects:ergTimes.Twok, nil];
NSManagedObject *eventToDelete = [temp objectAtIndex:0];
[managedObjectContext deleteObject:eventToDelete];
}
}