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 have some issues with NSDate.

The code I have looks like:

NSDate *date    = [NSDate dateWithTimeIntervalSinceNow:logout];

When I put my breakpoint at this code and move my mouse over, it shows as

2013-01-28 18:25:27 SGT

but when NSLog date

I get this:

2013-01-28 10:25:27

Why is this so? How do show the correct one?

share|improve this question
You are from singapore and its GMT +8.00 hrs!! Your location matters a lot – MicRO Jan 28 at 9:38
how do u alter it? need some guidance... – lakesh Jan 28 at 9:39

2 Answers

up vote 1 down vote accepted

This problem is just because NSDate is a "raw" date. That's why it is in GMT

You can try this,

NSDate* sourceDate = [NSDate dateWithTimeIntervalSinceNow:logout];

NSTimeZone* sourceTimeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
NSTimeZone* destinationTimeZone = [NSTimeZone systemTimeZone];

NSInteger sourceGMTOffset = [sourceTimeZone secondsFromGMTForDate:sourceDate];
NSInteger destinationGMTOffset = [destinationTimeZone secondsFromGMTForDate:sourceDate];
NSTimeInterval interval = destinationGMTOffset - sourceGMTOffset;

NSDate* destinationDate = [[NSDate alloc] initWithTimeInterval:interval sinceDate:sourceDate];

this will give you your current timezone

share|improve this answer

NSDate defines an object that represents a date with certain properties (such as timezone). If you wish to display a date, you could choose to show only it's year, maybe only the hours and minutes (all this can be done using the NSDateFormatter class). What you're doing is printing the object out on the LLDB - this shows you probably the UTC version of the date so I'm not surprised that the debugger summary of that same instance shows a different time.

Decide what you need to do with this date, set it's timezone accordingly, format it and print it out in your console.

share|improve this answer
am i right to say that lldb version code will be used in the device also right? – lakesh Jan 28 at 9:37
moreover, how do u set the timezone for NSDate dateWithTimeIntervalSinceNow:logout]; – lakesh Jan 28 at 9:38

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.