I'm trying to initialise an NSTimeZone object like this:
var timezone = NSTimeZone.init(name: "Europe/Moscow")
instead of nil or a legit locale value - I get "unable to read data" in xCode's debugging tool
I got the timezone string ("Europe/Moscow") via NSTimeZone.knownTimeZoneNames()
I'm using xCode 7
What am I doing wrong?