This file contains hidden or 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
- (void)ubiquityStoreManager:(UbiquityStoreManager *)manager willLoadStoreIsCloud:(BOOL)isCloudStore { | |
self.privateManagedObjectContext = nil; // 8: -1 | |
self.mainManagedObjectContext = nil; // 9: -1 | |
#if TARGET_OS_IPHONE | |
dispatch_async( dispatch_get_main_queue(), ^{ | |
if (![self.storeLoading isVisible]) | |
self.storeLoading = [PearlOverlay showOverlayWithTitle:@"Opening Your Data"]; | |
} ); |
This file contains hidden or 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
#!/usr/bin/env bash | |
for file; do | |
while read -r line; do | |
if [[ $line = "===" ]]; then | |
.. | |
else | |
.. | |
fi | |
done < "$file" |