1
Dears,幫助將字符串轉換爲「Mon,10 Apr 2017,10:00:00 PDT」至日期 我的代碼如下,不幸的是它導致錯誤:「EEE,dd MMM yyyy hh:mm:ss zzz」字符串轉換爲日期
extension String {
func getDate() -> Date {
let formatter = DateFormatter()
formatter.dateFormat = "EEE, dd MMM yyyy hh:mm:ss zzz"
return formatter.date(from: self)! // Returns "Mon, 10 Apr 2017, 10:00:00 PDT"
}
}
謝謝!有用:) – LEONID