2016-09-20 65 views
3

我想獲得用戶的當前日期和時間區在斯威夫特3.我的雨燕2.2試過下面的代碼:如何在swift 3中獲取當前日期?

static var localTimeZoneAbbreviation: String { return NSTimeZone.localTimeZone().abbreviation!} 
+1

你想日期和時區分開嗎?示例代碼只是返回時區。 –

+0

是的,我想要分開的日期和時區。並感謝Nirav D解決方案爲我工作 –

回答

9

對於來自NSTimeZone越來越abbreviation

static var localTimeZoneAbbreviation: String { return NSTimeZone.local.abbreviation(for: Date())! } 

For current current Date

let currentDate = Date()