iOSで今日の午前10時と明日の午前10時を取得するにはどうすればよいですか?
NSDateComponents *nowComponents = [calendar components:NSYearCalendarUnit | NSWeekCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit fromDate:today];
[nowComponents setHour:10];
これは適切な応答を与えていません。これどうやってするの?