3
我想獲得用戶的當前日期和時間區在斯威夫特3.我的雨燕2.2試過下面的代碼:如何在swift 3中獲取當前日期?
static var localTimeZoneAbbreviation: String { return NSTimeZone.localTimeZone().abbreviation!}
我想獲得用戶的當前日期和時間區在斯威夫特3.我的雨燕2.2試過下面的代碼:如何在swift 3中獲取當前日期?
static var localTimeZoneAbbreviation: String { return NSTimeZone.localTimeZone().abbreviation!}
對於來自NSTimeZone
越來越abbreviation
。
static var localTimeZoneAbbreviation: String { return NSTimeZone.local.abbreviation(for: Date())! }
For current current Date
。
let currentDate = Date()
你想日期和時區分開嗎?示例代碼只是返回時區。 –
是的,我想要分開的日期和時區。並感謝Nirav D解決方案爲我工作 –