Quantcast
Channel: [SMD] - 8L0G5PH3R3 » Objective-C
Viewing all articles
Browse latest Browse all 5

XML Date to CoreData NSDate

$
0
0

Here is code snippet to parse a XML string to Core Data NSDate.

NSString *string = [currentString stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NSLocale* usLocale = [[NSLocale alloc] 
initWithLocaleIdentifier:@"en-US"];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setLocale:usLocale];
[dateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss ZZ"];
NSDate *pubDate = [dateFormatter dateFromString:string];

Viewing all articles
Browse latest Browse all 5

Trending Articles