Ive been racking my brains with no luck. Could someone please tell me how i would convert this string:
\"2011-01-13T17:00:00+11:00\"
into a NSDate?
Did you try this
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; NSDate *dateT = [dateFormatter dateFromString:str];
Cheers