tags:

views:

14

answers:

1

I have 1 string NSString *string = @"2010-04-16 15:42:58";

now i want to convert it to 16 april

So,my string will be converted to NSString *stringOutPut =@"16 April";

+2  A: 

Look at the NSDateFormatter

Tom Irving