There is an NSDate on iPhone. NSDate does not do string conversions itself, it is a data class. For conversion to/from a localized string, you want NSDateFormatter.
Main Topics
Browse All TopicsI am writing my first iPhone program and need to test for what the date is. If a certain date is current or has passed, I want to display a new label field.
This question is in progress.
Our experts are working on an answer right now.
Sign up for immediate access to the solution once it becomes available.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
To get the current date + time, you simply need to call:
NSDate* currentDate = [NSDate date];
If you actually want to create your own date, you should do something like this
NSDateFormatter* formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd-MM-yyyy
NSDate* newDate = [formatter dateFromString:@"05-05-201
[formatter release];
The formatter will change a string to a date based on the format you enter.
yyyy = year
MM = month
dd = day
HH = hour (in 24h notation)
mm = minutes
ss = seconds
If you want to check if a date has passed you should do:
NSTimeInterval interval = [currentDate timeIntervalSinceDate:newD
if (interval > 0)
// currentDate is more recent, else newDate is
Business Accounts
Answer for Membership
by: fridomPosted on 2009-11-06 at 22:59:49ID: 25765247
Is there NSDate available on iPhone?
Select allOpen in new window