gpt4 book ai didi

Swift:获取 'Specific Date' 之前 30 天的信息

转载 作者:行者123 更新时间:2023-11-30 11:07:57 24 4
gpt4 key购买 nike

我在显示具体日期时遇到问题。在这种情况下,我的 API 中有一个随机日期 (06/16/2015),该日期总是会变化。我把它放入变量名 toDate与日期类型。我需要在 toDate 之前 30 天获取对于我的fromDate变量。

我读到this但它仍然不起作用。注意:我在此 Controller 中没有任何 DatePicker。

最佳答案

给你:

let toDate = `your date object`
let fromDate = Calendar.current.date(byAdding: .month, value: -1, to: toDate)

or,
// If you want to have exactly 30 days before
let fromDate = Calendar.current.date(byAdding: .day, value: -30, to: toDate)

关于Swift:获取 'Specific Date' 之前 30 天的信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52488973/

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