2012-09-03 45 views

回答

0

如果你有不同的NSManagedObjectContexts,你需要聽取「保存」。

[[NSNotificationCenter defaultCenter] addObserver:self 
              selector:@selector(updateStuff:) 
               name:NSManagedObjectContextDidSaveNotification 
               object:nil]; 

一旦完成,您可以「刷新」您的數據。

- (void)updateStuff:(NSNotification *)notification 
{ 
    NSArray *array = [myEntity.theRelationship allObjects]; 
} 
相關問題