With the Cocoa framework how can I parse @"2008-12-29T00:27:42-08:00" into an NSDate object? The standard -dateWithString: doesn't like it.
|
2
|
|
|
|
|
|
You can use NSDateFormatter to parse dates:
The unicode date format patterns defines the format string you can use with the Note that if you're targeting 10.4 then you need to call: |
|||
|
|
|
You'll need to look at NS**Calendar**Date's |
||
|
|
|
If you only need to handle the ISO 8601 format (of which that string is an example), you might try my ISO 8601 parser and unparser. |
||
|
|
