- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
经过几乎疯狂的搜索,我的代码在哪里失败了……我得以隔离这种奇怪的行为。减去-200天,看看会发生什么
NSDate *now = [NSDate date]; //now is 2013-07-19
NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"YYYY-MM-dd"];
NSDate *newDate1 = [now dateByAddingTimeInterval:60*60*24*-199];
newDateTmp=[format stringFromDate:newDate1];
NSLog(@"now:%@ newDateTmp:%@",now,newDateTmp);
newDate1 = [now dateByAddingTimeInterval:60*60*24*-200];
newDateTmp=[format stringFromDate:newDate1];
NSLog(@"now:%@ newDateTmp:%@",now,newDateTmp);
newDate1 = [now dateByAddingTimeInterval:60*60*24*-201];
newDateTmp=[format stringFromDate:newDate1];
NSLog(@"now:%@ newDateTmp:%@",now,newDateTmp);
newDate1 = [now dateByAddingTimeInterval:60*60*24*-365];
newDateTmp=[format stringFromDate:newDate1];
NSLog(@"now:%@ newDateTmp:%@",now,newDateTmp);
NSDate *newDate1= [NSDate dateWithTimeInterval:60*60*daysToAdd sinceDate:now];
最佳答案
这不是错误。您使用的格式错误。它应该是
@"yyyy-MM-dd"
y
Y
-年(基于“年度”的日历中)。今年的指定
关于ios - dateByAddingTimeInterval中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17751503/
我创建了一个带有每日提醒/通知的小型 iOS 应用程序。用户可以选择他/她将被通知的时间(和分钟)。到目前为止,一切正常。如果我将间隔设置为 1 分钟进行测试,则会出现通知。 NSDate *sche
我是否遗漏了有关 NSDate dateByAddingTimeInterval 如何处理天数的信息?这是我从特定日期 (AIDate) 减去 33 天的代码。 AIDate 的时间值为太平洋标准时间
如果我将方法 dateByAddingTimeInterval: 发送到 NSDate,如下所示: NSDate *today = [NSDate date]; NSDate *tomorrow =
我有以下 Objective-C 代码: NSString *dateStr = @"2012-09-21 05:00:00"; // Convert string to date object N
我正在尝试在用户关闭应用后约 24 小时发送通知。我已经在 Objective-C 中完成了以下工作,但现在,我正在尝试快速学习并需要一些帮助 UILocalNotification *notific
您好!我一定是看到了一些东西。看看这个excerpt from the iPhone OS引用库: addTimeInterval: Returns a new NSDate object that
@IBAction func onDateChanged(sender: AnyObject) { let dateFormatter = NSDateFormatter() /
我是一名优秀的程序员,十分优秀!