2
votes
2answers
71 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 …
2
votes
2answers
265 views
Using NSDateFormatter on the iPhone, protect locale but lose date components.
Hi
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 …
2
votes
2answers
475 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 …
1
vote
2answers
54 views
NSDateFormatter gives different values on device and simulator? What is work around?
Hi,
I am using NSDateFormatter, the problem is with its consistency. If I use the kCFDateFormatterMediumStyle it gives the format as "Nov 26, 2009" in simulator but on device it gives "26-Nov-2009".
…
1
vote
1answer
170 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 …
1
vote
1answer
57 views
How do you interpret dates with NSDateFormatter?
In the Apple Docs, they say that NSDateFormatter uses the Unicode for spec. I've read the spec, but I'm having troubles interpreting this date:
NSDateFormatter *frm = [[NSDateFormatter alloc] init];
…
1
vote
4answers
422 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 …
1
vote
1answer
1k views
Covert NSString to NSDate in a different timezone
Hi
I am trying to convert a string to date in a separate time zone from the current system time zone. I have set the time zone of the dateformatter to this timezone. But the NSDate I get is always in …
0
votes
1answer
26 views
How to use NSDateFormatter with NSPopUpButton
I have an NSPopUpButton's content bound to an Array Controller of "Meeting" entities and it's content value bound to the same array controller, but to the "date" model key path. Everything works fine. …
0
votes
4answers
39 views
iPhone SDK - NSDateFormatter day + month
Hi Everyone,
I would like to display only the day and month of a date. Basically the NSDateFormatterLongStyle but without the year.
The problem I'm facing is the localization. In the english version …
0
votes
2answers
71 views
NSDateFormatter: I Don’t want the time!
I am playing around with the coredatabooks source code example from the apple website, or here. I am trying to set the books copyright date attribute value to replace the author as the tableview …
0
votes
1answer
41 views
iphone NSDate NSDateFormatter to a ceratin format
Hello Everybody,
i want to convert my NSDate to a certain format which is:
"Wednesday, December, 2, 2009"
does anybody know what is the corresponding format string to that date example?
appreciate …
0
votes
1answer
17 views
Date Formatters in NSDateFormatter
Hi all,
The documentation is not clear about the date formatters
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"EEE, d MMM yyyy …
0
votes
1answer
41 views
NSDateFormatter returns 1970 instead of current year with format MM/dd
The following code:
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"MM/dd"];
NSDate *newTime = [dateFormatter dateFromString:@"10/01"];
…
0
votes
1answer
161 views
Converting a date (string) into another date format (string)
I have a novice question, will be happy if any one out there can help me.
I have an NSMutableArray, for example:
{
JobID = 109302930;
Subject = "Test Subject";
SubmitDate = "2009-09-15 17:27:34";
}
…
