I have a Threaded application, in which there is a NSMutableArray, which contains the NSManagedObjects, Now i want my array to be accessed once at
NSMutableArray
NSManagedObjects
You could wrap every access to the class with something like the following:
@synchronized(myArray) { [myArray doSomething]; }