let dateFormatter = DateFormatter()
dateFormatter.locale = Locale(identifier: "UTC")
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
let date = dateFormatter.date(from: "2018-07-18T17:02:02.614Z")
日期描述打印:2015-06-18 17:02:02 +0000 Playground 似乎自然地在右侧输出:“2015 年 6 月 18 日上午 10:02”
如何格式化它以显示这个?“2018 年 7 月 18 日上午 10:02”
谢谢!