Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
801 views

iPhone - Differences among time zone convenience methods

I see that NSTimeZone has these methods : defaultTimeZone localTimeZone systemTimeZone Can someone explain to me, in simple terms, what the differences are beetween those calls, and when one ...
6
votes
2answers
396 views

Detect if time format is in 12hr or 24hr format

Is there any way to detect if the current device of the app uses 12h our 24h format, so that I can use one NSDateFormatter for 12h and one for 24h depending on the users language/loaction setting? ...
3
votes
1answer
158 views

iOS - How to get raw offset for timezone?

How do I get the raw offset in milliseconds for Coordinated Universal Time in iOS programmatically?
2
votes
3answers
162 views

NSDate independent of timezone?

I have an app that displays a timetable of certain ferry trips. If I travel to a different timezone - say 4 hours behind, a 10am ferry trip now shows up as 6am? I know this has got to do with how ...
2
votes
1answer
245 views

iPhone - How to get time zone offset?

We have NSTimeZone class that tells more about the time zone. But I want to get only the offset of the time. For example: +05.30 is offset for Inida In other words offset of time with reference to ...
2
votes
1answer
4k views

Convert NSDate to NSString with NSDateFormatter with TimeZone without GMT Time Modifier

I'm initializing my NSDateFormatter thusly: NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease]; [dateFormatter setLocale:[[[NSLocale alloc] ...
2
votes
2answers
740 views

Getting city and country from NSTimeZone

I'd like to (at least) get the name of the country for a time zone. This is not provided by any of the potential methods: name, localizedName:locale:, description I notice that the built in iPhone ...
1
vote
2answers
54 views

How to set the time zone for a date in iOS 3.x

Anyone know how to set the time zone in an NSDate object prior to iOS 4.0? In iOS 4 and greater I do the following: NSCalendar *calendar = [[[NSCalendar alloc] ...
1
vote
2answers
223 views

Not Getting Proper Time Zone

I am very new in iPhone. I have one issue. First Just check my code. NSString *timeZone=[NSString stringWithFormat:@"%@",[[NSTimeZone systemTimeZone] abbreviation]]; NSLog(@"Print Time Zone :- ...
1
vote
0answers
311 views

Does NSTimeZone in iPhone adjust automatically for DST

I have a fairly simple question. I have a set of dates in UTC. I want to represent these to the user in the correct local time adjusted (or not, if DST is not currently in effect) for DST. So, if I ...
1
vote
1answer
365 views

In iOS is daylight saving in NSTimeZone broken?

I have two variables: NSTimeZone *timeZoneMinus5 = [NSTimeZone timeZoneForSecondsFromGMT: -18000]; NSTimeZone *timeZoneEST = [NSTimeZone timeZoneWithName:@"EST"]; Tested on a device and on the ...
1
vote
1answer
233 views

How can I map tz database names to city and country names?

Is there a publicly available mapping from tz database (aka zoneinfo database, aka Olson database) IDs to city and country? For example: "Pacific/Auckland" => "Auckland, New Zealand" ...
1
vote
2answers
1k views

How to get the extract the Time zone from systemTimeZone(NSTimeZone)

can any one get me the idea in extracting the Time zone from systemTimeZone(NSTimeZone) i have added the sample along with this. NSTimeZone *localTime = [NSTimeZone systemTimeZone]; NSLog(@" - ...
1
vote
1answer
350 views

Do NSDate's in CoreData encapsulate time zone?

I keep dates and times in my CoreData store and need to accurately present to users the time as originally entered. The problem is that if they entered 4:00 on the East Coast, then later look at the ...
1
vote
1answer
335 views

ASP.NET Javascript DateTime TimeZone Issues

I am having an issues passing a JSON containing DateTime to asp.net code-behind (c#). If the client browser is in the same timezone as the server I have no issue, but if they are in different ...
1
vote
2answers
496 views

Getting timezone information on iPhone for coordinates

For iPhone development: How can I get the timezone and DST information for any place given that I only have geographic coordinates. (NSTimezone does not have any such method)
1
vote
1answer
1k views

Time Zone offset number in Objective-c?

How can I get the Timezone offset in Objective-C (for iPhone OS 3)? For example, GMT -5 is US Eastern Time. I want the -5 part of it. How would I do so?
1
vote
2answers
914 views

iPhone NSTimeZone: localTimeZone confusion

From what I understand, calling NSLog(@"Local Time Zone %@",[[NSTimeZone localTimeZone] name]); gives you the local time zone of the device. What it's giving me is "US/Central", and I can't ...
1
vote
1answer
1k views

How to calculate the time difference between two locations

I am having a problem with calculating time difference between two timeZones. If I am at location A I know the latitude and longitude and the current time. I go to location B I know the latitude and ...
1
vote
3answers
3k views

In Cocoa, how do I use NSTimeZone to get the system time zone offset as a string?

For PDT, I would want "-0700". I'm getting a date in the past to determine how long ago something happened. NSDate *then = [NSDate dateWithString:@"1976-04-01 12:34:56 -0700"]; // Note the ...
0
votes
1answer
21 views

GMT timezone conversion in objective c

I am trying to convert nsstring to nsdate and then to the systemtimezone. Is my code right? Any help appreciated. NSString *str=@"2012-01-15 06:27:42"; NSDateFormatter *dateFormatter = ...
0
votes
2answers
81 views

NSDate to GMTDate to JSON format

I want to convert my Local date ([NSDate date]) to GMT to create a JSON string (/Date(1324435876019-0000)/). My code works fine when i set my clock to EST time zone when i change my timezone to PST ...
0
votes
2answers
139 views

Wrong time with NSDate and NSTimezone

I have two dates (written in two different NSString), for example 31/12/2011 and 31/03/2012 I have to check if today is in this range. For read the date from the NSString, I'm doing this: ...
0
votes
2answers
113 views

NSTimezone not giving GMT+ or GMT- formate iphone?

I am getting total number of seconds for the timezone but not getting it is ahead of GMT Or behind to GMT. Here is my code. NSDate *sourceDate = [NSDate dateWithTimeIntervalSinceNow:3600 * 24 * 60]; ...
0
votes
0answers
107 views

iPhone4 iOS5 [[NSTimeZone localTimeZone] daylightSavingTimeOffset] wrong for daylight savings time?

I live in the US eastern time zone (EST), and a couple weeks ago the daylight savings began. I was testing some of my earlier code, which was working(supposedly) fine and noticed that the day second ...
0
votes
1answer
112 views

System timezone vs selected timezone

What's the best way to compare two time zones? I'm facing an issue while comparing two NSTimeZone instances using - (BOOL)isEqualToTimeZone:(NSTimeZone *)aTimeZone method. NSString *timeZoneName ...
0
votes
3answers
110 views

NSTimezone how to set CST to nsdateformater

all I'm new to ios programming. I want to set CST in the method [dateFormatter setTimeZone:] I have created a sample project to get all known timezones Code is here: NSArray *timeZoneNames = ...
0
votes
2answers
234 views

NSCalendar dateFromComponents: GMT timezone instead of systemTimeZone

This code NSCalendar *calendar =[NSCalendar currentCalendar]; [gregorian setTimeZone:tz]; NSLog(@"%@", [gregorian timeZone]); NSDateComponents *comp = [gregorian components:(NSYearCalendarUnit | ...
0
votes
1answer
75 views

EventKit problems with custom timezone

EKEventEditViewController's datepicker displays incorrect time (with incorrect offset) if I set custom timezone for the app: [NSTimeZone setDefaultTimeZone:someOtherTimezone] Is this EventKit bug? ...
0
votes
3answers
52 views

What is the location for IP address of POST request prepared using ASIHTTP, if user is on 3G?

If I prepare an HTTP request using ASIHTTP in my iPhone app, POST it to a php site, and have the site log the IP address, and if the user is not on WiFi but using a 3G connection, what will the logged ...
0
votes
1answer
137 views

NSDatePicker timezone weirdness

I have an NSDatePicker in my nib file. In code, I set it's timezone to be the GMT calendar's timezone: [datePicker setTimeZone:[calendar timeZone]]; I only really care about the time (hours, ...
0
votes
1answer
164 views

Question about NSDateFormatter and NSCalendar (involving Timezones)

I have the following code: self.formatter = [[NSDateFormatter alloc] init]; [formatter setTimeZone:timeZone]; [formatter setDateFormat:@"YYYY-MM-dd hh:mm:ss a z"]; timeStampForCity = ...
0
votes
1answer
110 views

Objective-C - NSTimeZone 2 hours wrong?

I'm using the following code to set my timezone to Stockholm, Europe. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setTimeZone:[NSTimeZone ...
0
votes
3answers
203 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
3answers
155 views

NSDateFormatter behavior problem

I have a problem using NSDateFormatter in iPhone programming. Below is my code snippet. NSString *inputDate = @"2011-03-14"; NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter ...
0
votes
2answers
435 views

Date and timezone

In our app, we always need to pick the current Eastern time (EST or EDT). We set the application timezone as below in the app delegate: NSTimeZone *ESTTimeZone = [NSTimeZone ...
0
votes
3answers
404 views

iphone sdk system time vs user time

I have an app that requires me to take an action after some period of time. For example, if an user hasn't been inside the app in few weeks, when the user eventually starts the app, I have to ask ...
0
votes
3answers
241 views

How to get 24 hr format time from iDevices?

I am working on application that required iPhone date and time to post on server. now this date and time on different devices are always different all over the world based on region and time zone. so ...
0
votes
1answer
576 views

Local Time Zone iPhone

I'm parsing an.ics file that includes time stamps of events like this: 20101008T230000Z This is, as far as I understand, expressed in UTC. Now, I want my app to display this time correctly, ...
0
votes
1answer
485 views

Get Time Zone abbreviation given GMT offset with Objective C

Is there a way to lookup a timezone abbreviation when only the temporal offset is known? Example: Say i'm given the offset of GMT -5, i'd like to display the abbreviation of EST (assuming US) as ...
0
votes
2answers
346 views

Getting wrong date with initWithTimeInterval: sinceDate:

I have a date, 2010-08-23 13:30:00 -0400 and I'm trying to get it in the UTC +2 time zone. The difference in seconds is 21600 but when I call [[NSDate alloc] initWithTimeInterval:interval ...