Last active
August 29, 2015 14:20
-
-
Save sebastienwindal/5d747672af966d4b6d83 to your computer and use it in GitHub Desktop.
Core Data Sample
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
// delete all placeholder meal logs older than a certain date | |
NSPredicate *oldPlaceholderPredicate = [NSPredicate predicateWithFormat:@"(isPlaceholderMealLog = TRUE) AND (eatenOn < %@)", twoDaysAgoAtMidnight]; | |
[MealLogManaged MR_deleteAllMatchingPredicate:oldPlaceholderPredicate inContext:context]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment