I have displayed the list of timezones in my app. If user selects a particular timezones, I need to change the local timezone to the selected timezone by the user.
let region = Region(tz: timeZoneName.timeZone , cal: cal, loc: cal.locale!)
let date = Date().inRegion(region: region).absoluteDate
Here is the problem, the region is changed to the selected timezone but the date issuing the local timezone.
A
Date
contains no timezone. From apple's docs: A specific point in time, independent of any calendar or time zone.The timezone comes into play as soon as you want to present a date to the user. And that's what a
DateFormatter
is for. As @AlexWoe89 already pointed out, it let's you convert a string, containing a date into aDate
object, but also lets you convert a given date into a string representing the date in the time zone you set to thetimeZone
property ofDateFormatter
.This will store
2017-10-23 04:27
in dateString1, while the same date leads to2017-10-23 13:27
in dateString2.