今月の初日を取得する必要があるメソッドのこのサブセットがあります。
NSDate *today = [NSDate date]; // returns correctly 28 february 2013
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
components.day = 1;
NSDate *dayOneInCurrentMonth = [gregorian dateByAddingComponents:components toDate:today options:0];
dayOneInCurrentMonth
2013-03-01 09:53:49 +0000
次に、翌月の初日に印刷します。
今月の初日を取得するにはどうすればよいですか?