gpt4 book ai didi

iphone - 如何在当前时间添加时间

转载 作者:技术小花猫 更新时间:2023-10-29 10:55:44 24 4
gpt4 key购买 nike

我对这个很困惑。

我想抓取当前时间,而不是根据条件,我想将所需时间添加到当前时间。例如。

current time  = 06:47:10 
//or should i hv to change this format to "2011-03-26 06:47:10 GMT"

if(a= 1 and b= min )
{ //add 1 min to
current time
}
else if(a= 1 and b= hour)
{ //add 1
hour to current time
}
else if(a= 1 and b=week )
{ //add 1
week to current time
}

只需要将上述条件的输出加上当前时间即可。

请指导我。

问候

最佳答案

你指的是当前时间吗?

如果是这样,这将为您完成:

NSDate *now = [NSDate date]; // Grab current time
NSDate *newDate = [now addTimeInterval:XXX] // Add XXX seconds to *now

其中 XXX 是以秒为单位的时间。

关于iphone - 如何在当前时间添加时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5440837/

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