NSDateFormatter for RSS


/ Published in: Objective C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. NSString *strPubDate = @"Fri, 8 May 2009 08:08:35 GMT";
  2. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
  3. [dateFormatter setDateFormat:@"EEE, d MMM yyyy HH:mm:ss zzzz"];
  4. NSDate *myDate = [dateFormatter dateFromString:strPubDate];

URL: http://www.lusine.ch/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.