gpt4 book ai didi

swift - 来自按钮的时间戳?

转载 作者:行者123 更新时间:2023-11-28 10:13:29 24 4
gpt4 key购买 nike

有没有办法在按下按钮时将时间记录为字符串?我不知道从哪里开始?

最佳答案

只需从该按钮创建 IBAction,如下所示:

@IBAction func buttonPressed(_ sender: UIButton) {
let currentDateTime = Date()
let formatter = DateFormatter()
formatter.timeStyle = .short
formatter.dateStyle = .none
print(formatter.string(from: currentDateTime))
}

关于swift - 来自按钮的时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44742290/

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