I have an NSDate that I am saving into NSUserDefaults.
When my app runs this code for a 2nd pass, I am expecting an NSDate to be retrieved from NSUserDefaults but, it is always nil. Not sure why.
NSDate *mostRecentMentionDate = [dateFormatter dateFromString:mostRecentMentionMessageTimestamp];
NSDate *savedMentionDate = [[NSUserDefaults standardUserDefaults] objectForKey:@"mostRecentMentionDate"];
if (savedMentionDate == nil || [savedMentionDate isEqual:[NSNull null]]) {
//There is no existing mention, so save the most recent one
[[NSUserDefaults standardUserDefaults]setObject:mostRecentMentionDate forKey:@"mostRecentMentionDate"];
[[NSUserDefaults standardUserDefaults] synchronize];
}

NSDateto/from a string,NSUserDefaultsis perfectly capable of storingNSDateobjects, and you're just making things complicated and slow by doing the conversion yourself. See stackoverflow.com/questions/2013850/… – Abhi Beckert Nov 10 '11 at 8:22if (savedMentionDate == nil || [savedMentionDate isEqual:[NSNull null]])- This check is entirely redundant. Just check if it's equal to nil and call it a day. – sudo rm -rf Nov 28 '11 at 17:49