今日の日付のいくつかのコンポーネントを NSDateComponent で次のように設定しようとしています:
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:1];
[comps setHour:1];
[comps setMinute:44];
NSCalendar *cal = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];
NSDate *date = [cal dateByAddingComponents:comps toDate:[NSDate date] options:0];
[comps release];
NSLog(@"%@", date);
ただし、この例では、時刻を現在の日付に加算します。今私がしたいのは、ある日を追加することですが、時間と分を指定された値に設定します(追加なし)。これどうやってするの?