문제

Some countries are observing daylight saving, so I want to know if daylight setting is currently turned on or off (TRUE or FALSE) on the iDevice then I could correct the date on my app. is that possible?

도움이 되었습니까?

해결책

Query the current NSCalendars timeZone to see if it is currently in daylight saving time.

BOOL dst = [[[NSCalendar currentCalendar] timeZone] isDaylightSavingTime];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top