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?
