Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to take a date string and turn it into a specific NSDate (eg. July 1, 1981), but I don't see and methods for setting the date. Does anyone know how to accomplish this? Perhaps convert a DateTime object to NSDate?

share|improve this question

3 Answers

The easiest way is to set it from DateTime.

Implicit conversion of NSDate to and from DateTime is quite good, but you must be aware that NSDate is always an UTC time and DateTime is default set to DateTimeKind.Unspecified (when read from database) or DateTimeKind.Locale (when set with DateTime.Today). The best way to convert without complicated time-zone computations is to force the right DateTimeKind:

    // Set NSDate:
    DateTime date = DateTime.Parse("1981-07-01")
    NSDate nsDate = DateTime.SpecifyKind(date, DateTimeKind.Utc);

    // Get DateTime from NSDate:
    date = DateTime.SpecifyKind(nsDate, DateTimeKind.Unspecified);
share|improve this answer
1  
I would recommend adding a the following line to make sure your converting properly date = date.ToLocalTime (); worked perfectly for me in addition to what you have mentioned. Thanks for the guidance. – BRogers Mar 15 at 20:27
public static DateTime NSDateToDateTime(MonoTouch.Foundation.NSDate date)
{
    return (new DateTime(2001,1,1,0,0,0)).AddSeconds(date.SecondsSinceReferenceDate);
}

public static MonoTouch.Foundation.NSDate DateTimeToNSDate(DateTime date)
{
    return MonoTouch.Foundation.NSDate.FromTimeIntervalSinceReferenceDate((date-(new DateTime(2001,1,1,0,0,0))).TotalSeconds);
}

This should help

Alex

share|improve this answer
This doesn't take into account timezone differences between how NSDate handles stuff and how datetime does. – BRogers Mar 15 at 19:39

You want to look at the NSDateFormatter class :)

Your code will look something like this . . .

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MMM dd, yyyy HH:mm"];

NSDate *parsed = [formatter dateFromString:dateString];

S

PS Example liberally copied from this question :)

share|improve this answer
I will look into setting the date using the NSDateFormatter. Monotouch does not have all of the methods of objective C, but it look like a step in the right direction. Thanks Dean – Bryan Jan 27 '10 at 17:32
I've never used monotouch myself but apparently NSDateFormatter is available in version 1.4.4 (monotouch.net/index.php?title=Releases/…). – deanWombourne Jan 27 '10 at 17:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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