How do I get GMT time?
NSDate *c =[NSDate date];
gives system time, not GMT.
|
feedback
|
| |||||||||||||||||||
feedback
|
|
If it's for display purposes you want to display it, use NSDateFormatter like so:
| |||
|
feedback
|
|
This is a simpler version of Ramin's answer
| |||
feedback
|
|
If performing date calculations, these categories may be useful. Having converted your date to being 'normalized' (that is, having the same month, day, and year but at +1200 UTC), if you then perform subsequent calculations using an NSCalendar that is also set to UTC (
| |||
|
feedback
|
|
NSDate stores the time zone internally -- there are a few functions you can call and pass in a target timezone if you jsut want a string representation of the date, see apple's documentation | |||
|
feedback
|
|
| |||
|
feedback
|
| |||
|
feedback
|