Convert NSDate to NSString

Viewed 22422

I have the following:

NSDateFormatter* df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSDate* date = [df dateFromString:[sDate stringByReplacingOccurrencesOfString:@"Z" withString:@"-0000"]];
[df release];

I would like the output string to be "9/20/10"

How can I do this?

3 Answers

You can also try

NSString *dateString = [NSString stringWithFormat:[NSDate date]];
Related