문제

For example I have this day 2014-08-08 12:00AM which is of course, true under daylight saving in the US.. how do I get the value of TRUE on it?

도움이 되었습니까?

해결책

Based on my previous answer to you, but use isDaylightSavingTimeForDate: instead.

NSDate *date; // Store your date 2014-08-08 12:00AM
BOOL dst = [[[NSCalendar currentCalendar] timeZone] isDaylightSavingTimeForDate:date];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top