0
votes
1answer
319 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
2answers
503 views

Create NSDate timezone issue

I am loading in dates from my web service, I'm sending dates in the format (GMT times): 02/11/11 10:56:09 I am creating an NSDate form this using NSDateFormatter as such: NSDateFormatter ...
1
vote
1answer
519 views

NSDateFormatter gives different output/wrong (GMT?) time

I have tried setting the timezone and locale of the NSDateFormatter but I can't seem to get anything to work. Here is the code NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; ...
0
votes
1answer
5k views

NSDate dateWithTimeIntervalSince1970 NOT returning GMT/UTC time

I tried an experiment because I need to be able to generate a unix timestamp (since 1970) in the app I am working on. NSLog(@"Getting timeIntervalSince1970"); double ...
0
votes
3answers
839 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 ...
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 ...
25
votes
5answers
25k views

NSDate - Convert Date to GMT

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