How do I get Todays date in "April 27" this format and compare with same string in iphone sdk.
Asked
Active
Viewed 162 times
1
-
Yes I done this with:NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"LLLL d"]; NSString *dateString = [dateFormatter stringFromDate:[NSDate date]]; – Arvind Apr 27 '11 at 15:49