NSOperationQueue and NSFetchedResultsController
问题 i use a combination of queue and resultscontroller to update and display some coredata objects. in my uitableviewcontroller i call every X second a method in my main controller object. [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(test:) userInfo:nil repeats:YES]; } - (void)test:(NSTimer*)theTimer { [[MainController instance] updatePersons]; } In this method a custom NSOperation object will be added to my main Q. - (BOOL)updatePersons { UpdatePersonsOperation* u = [