我想获得这种类型的甲酸盐-> 2018 年 4 月 20 日晚上 9:02:00 UTC+5:30 获取 Firestore 时间戳。我已经尝试过这段代码,但没有像上面那样得到正确的甲酸盐。
let date = Date()
let formatter = DateFormatter()
formatter.dateFormat = "MMMM d yyyy hh:mm:ss a Z"
formatter.timeZone = NSTimeZone(name: "IST") as TimeZone?
let result = formatter.string(from: date)
print(result)
已经使用这个格式化程序 formatter.dateFormat = "MMMM d yyyy'T'hh:mm:ss a Z"
谢谢