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?
|
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?
| |||
|
feedback
|
|
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:
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:
| ||||
|
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,
Alternatively, you can use the method 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." | |||||||
feedback
|