In my app I would like to allow the user to enter a value only once a day.

How do I make sure the the stored NSDate is not within the current day? Can I compare the day value of two NSDate while ignoring the time?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Dates are just wrappers around NSTimeIntervals. They have no concept of local time, so you can't get a day value out of them directly.

You could use NSDateFormatter, like this:

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy/MM/dd"];

NSString *today = [formatter stringFromDate:[NSDate date]];

NSString *dateToCompare = [formatter stringFromDate:someDate];

If ([dateToCompare isEqualToString:today]) {
    ...
}

Date formatters output the date using your local timezone, so you can guarantee that the day will be correct for the user.

If you actually want to ensure that the events are more than 24 hours apart (to prevent cheating) it's much easier, just do this:

if ([date1 timeIntervalSinceDate:date2] > 3600*24)
{
    ...
}
link|improve this answer
feedback

You can use an instance of NSDateComponents along with the user's calendar to find the weekday and compare it with the last update. For example,

NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *comps = [calendar components:NSWeekdayCalendarUnit fromDate:[NSDate date]];
NSInteger weekday = [comps weekday];

Alternatively, you can use the method components:fromDate:toDate:options: to check the number of days in the time interval between two dates, instead of the current day in the calendar. This might be more useful if you want to allow an answer every 24 hours instead of the day of the week.

Of course if this is for an online game (or anything similar) you want to validate any answers on the server as well as the client, it's easy for the user to change the date or time zone to "cheat."

link|improve this answer
1  
+1 for the warning about local date cheats :P – John Riselvato Feb 3 at 19:26
With NSWeekdayCalendarUnit, if a user tries to enter a value on the same day a week later, they would be prevented from doing so. I would use (NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) instead. – yuji Feb 6 at 10:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.