-2
votes
5answers
51 views

Issue in coverting GMT time to Local time

My current Device time is --- 2013-05-09 10:23 AM I convert it int GMT with following code NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; dateFormatter.dateFormat = ...
0
votes
1answer
331 views

NSTimeInterval in UTC?

I am calculating current time Interval using following codes: NSTimeInterval tInt=[[NSDate date] timeIntervalSince1970]; int tInterval=(int)tInt; Is this timestamp is in utc time ? I need ...
0
votes
1answer
266 views

Changing of time zone

I'm doing objective-c (iOS) development. May I know how do I go about changing the default time zone of GMT +0 to GMT +8. GMT +8 is for Singapore. Here is my code: - (IBAction)dateChanged { ...
0
votes
3answers
869 views

iPhone - Strange problem with NSDate, NSString, and Timezones

I've searched and haven't found an exact question like mine, so here goes nothing: I have a NSString containing a key that I pull from an XML feed. The key is a time in 24-hour format (e.g. 13:30 or ...
0
votes
1answer
295 views

Absolute GMT date on iPhone

I'm trying to get a date that represents noon GMT for a recurring local notification. I need this local notification to fire at the exact moment to anyone using the app. So far, I'm trying this: ...
1
vote
1answer
3k views

NSDate - GMT on iPhone

I have the following code in a production application which calculates a GMT date from the date the user enters: NSDate *localDate = pickedDate; NSTimeInterval timeZoneOffset = [[NSTimeZone ...
3
votes
1answer
466 views

iPhone CurrentTimeZoneOffset from UTC

Is there a way to get the offset time zone for a given date. For example, if I am in New York and I pass in 12-12-2009 4 PM I would get back "-4" as we are 4 hours off GMT. (In .NET land there is a ...
26
votes
5answers
26k views

NSDate - Convert Date to GMT

I need the ability to convert an NSDate value to a GMT Date. How can I go about converting an NSDate value to a GMT formatted NSDate value, independent of whatever date locale settings the iPhone is ...