Reputation: 1399
I need to know the equivalent syntax for [NSTimeZone timeZoneWithAbbreviation: @"GMT"]
in swift
Upvotes: 1
Views: 4382
Reputation: 15639
Swift 3
let dateFormatterUTC = DateFormatter()
dateFormatterUTC.timeZone = TimeZone(abbreviation: "UTC")
Upvotes: 2
Reputation: 4967
Here:
var formatter: NSDateFormatter = NSDateFormatter()
formatter.timeZone = NSTimeZone(abbreviation: "GMT")
Upvotes: 7