I have a strange problem with EKEventEditViewController when using it with custom timezones. It behaves differently in two situations:
Situation 1 - works fine:
- Launch app
- Create EKEventEditViewController to add new event with startDate = [NSDate date]
- New event start is displayed correctly (current time)
- Change default timezone with [NSTimeZone setDefaultTimeZone:otherTimeZone]
- Create EKEventEditViewController to add new event with startDate = [NSDate date]
- New event start is displayed correctly (current time adjusted to time zone)
Situation 2 - unexpected behavior:
- Launch app
- Change default timezone with [NSTimeZone setDefaultTimeZone:otherTimeZone]
- Create EKEventEditViewController to add new event with startDate = [NSDate date]
- New event start is displayed incorrectly (system timezone offset + default timezone offset)
- Change default timezone back to system timezone [NSTimeZone setDefaultTimeZone:[NSTimeZone systemTimeZone]]
- Create EKEventEditViewController to add new event with startDate = [NSDate date]
- New event start is still displayed incorrectly (system timezone offset + default timezone offset)
My guess that on first display of EKEventEditViewController it somehow caches default timezone and then uses it as an offset.
Has anyone faced similar problem? Is this a bug or am I missing something?