Tagged Questions
an apple class that creates string representations of NSDate (and NSCalendarDate) objects, and convert textual representations of dates and times into NSDate objects
20
votes
3answers
77k views
NSDate and NSDateFormatter - short format date and time in iphone sdk
searched for answers, but the one's i found didn't seem to be ipone specific.
I basically need to get current date and time separately, formatted as:
2009-04-26
11:06:54
edit:
The code ...
15
votes
2answers
520 views
What is the best way to deal with the NSDateFormater locale “feature”?
It seems that NSDateFormater has a "feature" that bites you unexpectedly: If you do a simple "fixed" format operation such as:
NSDateFormatter* fmt = [[NSDateFormatter alloc] init];
[fmt ...
13
votes
7answers
1k views
NSDateFormatter's init method is deprecated?
Per
http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html
The init method of NSDateFormatter is "Available in ...
13
votes
14answers
5k views
NSDateFormatter returning nil in OS 4.0
I had the following code working on on OS 3.x
NSString *stringDate = @"2010-06-21T20:06:36+00:00";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter ...
12
votes
2answers
18k views
NSString to NSDate
I got a string that contains the current date by using this :
NSString *date = [[NSDate date] description];
At a different point I want to retrieve the date from this string and I used the ...
9
votes
5answers
6k views
Nil NSDate when trying to get date from UTC string in zulu time
Writing an iPhone app in Objective-C, I have a date in string form (in UTC format, with a Z on the end to denote zero UTC offset, or zulu time), which I need to parse into an NSDate object.
A bit of ...
8
votes
3answers
2k views
For iPhone OS 4.0 “dateFromString” method of NSDateFormatter returns nil
Hi
I am using following code & its working perfectly fine in iPhone OS 3.2
+(NSDate *)NSDateFromString:(NSString *)dateString
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] ...
7
votes
1answer
582 views
Auto-renewable subscription receipt date format
I'm struggling to figure out the formatting for the following date:
2011-05-24 19:02:32 Etc/GMT
This date is returned from Apple's receipt validation service and I need to turn it into a NSDate for ...
7
votes
3answers
450 views
how to split strings in objective c
How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a label. My main question is ...
7
votes
4answers
8k views
iPhone - NSDateFormatter
I have a String with a datetime format: "YYYY-MM-DD HH:MM:SS".
I use this in my source code:
NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setDateFormat:@"%e. ...
6
votes
1answer
150 views
Shared NSDateFormatter - Best Practices?
My team found that we were using a variety of NSDateFormatter objects throughout our code base, and started looking into how we could avoid the cost/confusion of allocating/initializing common ...
6
votes
2answers
1k views
Convert NSString of a date to an NSDate
This might be a silly question, but I can't seem to find the answer on here or in the documentation.
I want to convert an NSString such as @"9/22/2010 3:45 PM" to an NSDate.
I know to use ...
6
votes
5answers
5k views
iPhone OS: How do I create an NSDate for a specific date?
Seems like a simple thing but I can't seem to find a way to do it.
It would be great to see a couple different methods.
Thanks,
Nick
6
votes
1answer
792 views
How to give a input date format in iphone
i am new to iphone development. In my input date format is "2010-03-05T18:20:40Z", and i donno to how to give a input format of my code.So i have mentioned in my code (?).
input date format = ...
6
votes
3answers
3k views
Is there a simple way of converting an ISO8601 timestamp to a formatted NSDate?
If I use the following code:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm"];
NSDate *myDate = [dateFormatter ...
6
votes
2answers
3k views
Using NSDateFormatter on the iPhone, protect locale but lose date components
This is a slightly tricky question. I am using NSDateFormatter on the iPhone but I wanted to only show a standard date without the years component. But retain the users locale formatting for their ...
5
votes
1answer
1k views
Parsing rfc3339 dates with NSDateFormatter in iOS 4.x and MacOS X 10.6: impossible?
Parsing a rfc3339 date with NSDateFormatter appears to be impossible, in the general case. Am I wrong?
A not-especially-malleable web service is feeding me dates like:
2009-12-31T00:00:00-06:00
...
5
votes
6answers
16k views
Data Formatters temporarily unavailable
Im trying to use Date Formatters (NSDateFormatter), but I keep getting this error:
Program received signal: “EXC_BAD_ACCESS”.
Data Formatters temporarily unavailable, will re-try after a 'continue'. ...
5
votes
1answer
2k views
NSDateFormatter with 24 hour times
I have a countdown timer which countsdown from the current date/time to a specific future date/time. It is working great except for one problem. I input the future date using NSDateFormatter and ...
5
votes
3answers
2k views
How do you calculate the day of the year for a specific date in Objective C
This is something I found myself spending hours to figure out and therefor wants to share with you.
So the question was, How do i determine the day of the year for a specific date?
e.g. January ...
5
votes
2answers
2k views
Parsing a RFC 822 date with NSDateFormatter
I'm using a NSDateFormatter to parse a RFC 822 date on the iPhone. However, there is no way to specify optional elements in the date format. There are a couple of optional parts in the RFC 822 ...
5
votes
1answer
4k views
NSDateFormatter dateFromString will not parse a particular date string
Good day,
i have an NSDateFormatter that doesn't seem to like a particular string that i am trying to convert. this particular instance is
2009-10-16T09:42:24.999605
All of my other dates are ...
4
votes
1answer
45 views
Convert NSString to NSDate with string format “Sun, 08 Jan 2012 13:57:38 +0000”
I actually retrieve string date with the format "Sun, 08 Jan 2012 13:57:38 +0000"
For that I use the dateFormat "EEE, dd MMM yyyy HH:mm:ss ZZZ"
But it doesn't work...
NSDateFormatter *dateFormatter = ...
4
votes
2answers
97 views
How to parse this time format in Obj-C using NSDateFormatter?
I am having a lot of trouble trying to parse the following timestamp using NSDateFormatter:
30 MAR 2011 11:10:59 HKT
I could parse everything except for the timezone "HKT" at the end. I have tried ...
4
votes
5answers
468 views
NSDate Format outputting wrong date
I have a NSString (ex. "2011-04-12 19:23:39"), and what I did to format it to a NSDate was the following:
[inputFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *date = [inputFormatter ...
4
votes
1answer
938 views
NSDateFormatter - does not respect 12/24 hour (am/pm) system setting in some circumstances
I want to output a date (that has relative dates, e.g. Today, Yesterday etc.) and time (respecting the 12/24 hours setting on the iOS device) E.g.
Today 5:48 PM (when in 12 hour mode); and
Today ...
4
votes
4answers
424 views
NSDateFormatter Crash
We keep getting a random, weird crash with NSDateFormatter. The relevant stack trace is:
Program received signal: “EXC_BAD_ACCESS”.
#0 0x00000005 in ?? ()
#1 0x0213e3c3 in udat_parse ()
#2 ...
4
votes
1answer
3k views
iPhone SDK NSString To NSDate
I got a string from parsing a XML file which looks like this: Fri, 09 Apr 2010 00:00:45 +0200
and the corresponding pattern should be this "EEE, dd MMM yyyy HH:mm:ss ZZ", but I get (null).
This is my ...
4
votes
4answers
996 views
Doing comparison on NSDates in different timezones?
I have an array of NSDates which I build from strings using [NSDate dateFromString]
In the xml I parsed to get the string there was also a timezone string. As far as I can see in the manual NSDate ...
4
votes
1answer
3k views
Objective-C: Unicode Date Format
I am trying to work out how to have the UNICODE representation of
Sun, 03 May 2009 19:58:58 -0700 as eee, dd MMM yyyy HH:mm:s ZZZZ or something. I can't seem to get this working precisely.
4
votes
3answers
3k views
Ordinal Month-day Suffix Option for NSDateFormatter setDateFormat
What setDateFormat option for NSDateFormatter do I use to get a month-day's ordinal suffix?
e.g. the snippet below currently produces:
3:11 PM Saturday August 15
What must I change to get:
3:11 PM ...
3
votes
1answer
116 views
using NSDate to find the DATE from string
I am having problem finding date from string that is formatted using NSDateFormatter
Now, I am using this code:
NSDate *afterDate=[NSDate dateWithNaturalLanguageString:balanceDateAfter.stringValue];
...
3
votes
2answers
279 views
Human friendly date descriptions with NSDate on iOS
I want to display NSDates in a "human-friendly way", such as "last week", or "a few days ago". Something similar to Pretty Time for Java.
What's the best way to do this, subclassing NSDateFormatter? ...
3
votes
2answers
314 views
NSDate troubles - or how to ignore date/timezone?
Alright I've given up on this. Here's what I'm trying to do: I have a sunrise, sunset, and the current time in a certain timezone. I want to know if it's day or night by figuring out if the current ...
3
votes
3answers
180 views
dateFromString returns nil
This is my NSString,
myDate : 2011-06-07 11:23:47 0000
And this is the code,
NSTimeZone *currentDateTimeZone = [NSTimeZone defaultTimeZone];
NSDateFormatter *currentDateFormat = [[NSDateFormatter ...
3
votes
1answer
1k views
setting date format for NSDateFormatter
I am trying to set the date format for something like "2011-04-21 03:31:37.310396". I think I'm not getting the fractional seconds right. I'm looking at ...
3
votes
3answers
2k views
How to parse a date string into an NSDate object in iOS?
I am trying to parse a date string from xml into an NSDate object in an iPhone app
I am aware this must have been asked before, however, I believe I have the right syntax, but it is not working. Is ...
3
votes
1answer
267 views
NSDateFormatter and Japanese calendar
I'm having issues using NSDateFormatter when the user isn't using the Gregorian calendar as their default calendar for the iPhone.
NSString *testString = @"2011-01-14";
NSDateFormatter *dateFormat = ...
3
votes
1answer
396 views
Inconsistent behaviour with NSDateFormatter on two different devices
I'm having a bit of a problem with NSDateFormatter failing on one user's device (returning nil when parsing a string) and working perfectly when I run it locally (either in the simulator or on my ...
3
votes
2answers
368 views
NSDateFormatter returns a date off by a day
In my iPhone app, I am trying to get the EEE MMM dd from a date string received by a web service.
For all dates where time is < 07:00, the NSDateFormatter returns a date off by 1 day. For example: ...
3
votes
1answer
274 views
NSDateFormatter - 1 day incorrect?
I am importing a CSV file with a date format of month/day/year (e.g. 21/01/2007).
I am looping through the CSV some are working but some are coming out with the date 1 day previous with a time of ...
3
votes
2answers
168 views
Problem with negative date on iPad and not on simulator
I'm working on an history application so I need to cope with date before and after JC.
I'm trying to parse a string with the form "01/01/-200" but it returns a null date while it's working with ...
3
votes
3answers
7k views
NSDateFormatter dateFromString and iPhone in 24 Hour Format Confusion
I'm having a problem. I get incoming time strings in 12-hour format, and I'm turning them into NSDate objects. When the iPhone is in 12 hour format, no problem. But when it's in 24 Hour format, things ...
3
votes
2answers
293 views
how to convert datetime format in NSString?
I have got value from the xml 2009-11-23T05:24:41.000Z.
Now i want to display string like this: Wed, Nov 4, 2009 8:00 PM - Wed, Nov 4, 2009 9:00 PM
How it possible?
3
votes
2answers
3k views
Why can't I correctly parse this date string with NSDateFormatter?
I'm trying to parse a string that was generated by an NSDateFormatter using another NSDateFormatter with the same format.
Rather than trying to make that previous sentence make sense, here's some ...
2
votes
1answer
45 views
Parsing unix timestamp with RestKit in iOS
For an iOS app I am working on with RestKit I need to parse a unix timestamp
changed = "1325470840" into an NSDate. I know that I can manually do this with
[NSDate ...
2
votes
0answers
35 views
Why is allocating or initializing NSDateFormatter considered “expensive”?
What do people mean when they say this is expensive? I create instances of a lot of transient objects just for intermediate storage (NSString and NSDate are typical ones). How do I know if my program ...
2
votes
3answers
49 views
How to display yesterDay (with respect to Date, but not time interval of 24 hours) visited items in iPhone objective c
I have a table view with Contacts.
in that when i select the contact that contact has to be added in to another Table:RecentsTable. as recently visited items. for this purposs i have used code like ...
2
votes
2answers
77 views
Adding only date into core data as NSDate
I have a web service that returns a JSON object. The response consists of a refreshTime in UNIX timestamp (milliseconds) format. I convert the UNIX time stamp to NSDate by the following code:
NSDate ...
2
votes
2answers
103 views
NSDateFormatter dateFromString gives the wrong date
I've already tried the suggestions in other posts similar to this with no avail. Here is the situation:
I have an NSString like this:
Fri November 18, 2011
and I am trying to convert that to a ...