This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)saveToDiskAndShouldWait:(BOOL)wait { | |
__block BOOL success = NO; | |
// Give self time to save | |
[self performBlockAndWait:^{ | |
success = [self saveOrLogError]; | |
}]; | |
NSManagedObjectContext *parent = [self parentContext]; | |
if (parent) { | |
if (wait) { | |
[parent performBlockAndWait:^{ |