Search code examples
ioscocoa-touchswiftnstimezone

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



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


Solution

  • Here:

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