Ayman Ibrahim
Ayman Ibrahim

Reputation: 1399

Equivelant for [NSTimeZone timeZoneWithAbbreviation: @"GMT"] in swift


I need to know the equivalent syntax for [NSTimeZone timeZoneWithAbbreviation: @"GMT"] in swift

Upvotes: 1

Views: 4382

Answers (2)

Chatar Veer Suthar
Chatar Veer Suthar

Reputation: 15639

Swift 3

let dateFormatterUTC = DateFormatter()
dateFormatterUTC.timeZone = TimeZone(abbreviation: "UTC")

Upvotes: 2

Zoyt
Zoyt

Reputation: 4967

Here:

var formatter: NSDateFormatter = NSDateFormatter()
formatter.timeZone = NSTimeZone(abbreviation: "GMT")

Upvotes: 7

Related Questions