How to format Facebook/Twitter dates (from the JSON feed) in Objective-C

前端 未结 8 991
有刺的猬
有刺的猬 2020-12-13 02:39

For my iPhone application...

I am looking for a way to format the Facebook created_time JSON property value.

\"created_time\": \"2010-12-0

8条回答
  •  一整个雨季
    2020-12-13 03:24

    something similar to this should do the first one for you. i would double check against the docs, as i may have capitalised the wrong letters.

    [dateFormatter setDateFormat:@"YYYY-MM-ddThh:mm:ss z"];
    NSDate *date=[NSDateFormatter dateFromString:twitterDate];
    

提交回复
热议问题