How to convert that string:
2011-08-24T14:06:10Z
to NSDate using NSDateFormatter. I don´t know which format to set. What does this ´T´and ´Z´mean?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is a RFC3339 date format.
You can parse it using:
more information is available on the Apple Formatting Dates Documentation
and you can also find more information on the RFC3339 date format (regarding the T and Z) in this section of the RFC3339 standard