user3517855
user3517855

Reputation: 211

How to get daylight saving settings of a specific date?

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?

Upvotes: 0

Views: 88

Answers (1)

Rich
Rich

Reputation: 8202

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];

Upvotes: 1

Related Questions