gpt4 book ai didi

ios - 如何在 Swift 3 中将 CoreData 日期转换为日期时间

转载 作者:行者123 更新时间:2023-11-28 09:53:28 25 4
gpt4 key购买 nike

我有 CoreData myDate = date, Entity 列并返回输出:

let mydate = coreDataValues[0].myDate!
print(mydate)

OUTPUT == 2017-02-01 12:45:40 +0000

我想将 mydate 转换为 datetime,如下例所示;

2017-12-20-23-59-59

我该怎么做?

最佳答案

你可以这样做:

var dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd-HH-mm-ss"
var date = dateFormatter.string(from: mydate as Date)
print(date)

OUTPUT = 2017-02-01-18-10-01

关于ios - 如何在 Swift 3 中将 CoreData 日期转换为日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41980020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com