vote up 2 vote down star

I have an NSDate that I get from a UIDatepicker.

IBOutlet UIDatePicker *dueDate;

NSDate *selectedDate = [dueDate date];

how do I retrieve the month from dueDate in the form of an int? (1 for Jan, 2 for Feb, etc)

flag

62% accept rate

3 Answers

vote up 7 vote down check
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSMonthCalendarUnit fromDate:[dueDate date]];
NSInteger month = [components month];
link|flag
vote up 4 vote down

use -[NSCalendar components:fromDate:] for instance the example here:

http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSCalendar_Class/Reference/NSCalendar.html

link|flag
vote up 1 vote down
NSDateFormatter *dateFormat = [[[NSDateFormatter alloc] initWithDateFormat:@"%m" allowNaturalLanguage:NO] autorelease];
int month = [[dateFormat stringFromDate:dueDate] intValue];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.