- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UIDatePicker,我使用它获取日期:
NSDate *pickerDate = [datePickerView date];
我想根据 pickerDate 中的星期几和时间 (HH:mm:ss) 创建一个 future 的日期。这是我正在使用的代码,但它生成的日期是错误的:
更新代码
//format the uidatepicker
NSDate *dateSet = pickerDate;
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setTimeZone:[NSTimeZone localTimeZone]];
[df setDateFormat:@"EEEE HH:mm:ss"];
NSString *dateSetString = [df stringFromDate:dateSet];
NSLog(@"repeatDateString %@",dateSetString);//prints "Tuesday 12:12:43"
//create a new nsdate using the new format
NSDateFormatter *dateFormat2 = [[NSDateFormatter alloc] init];
[dateFormat2 setTimeZone:[NSTimeZone localTimeZone]];
[dateFormat2 setDateFormat: @"EEEE HH:mm:ss"];
NSDate *newDate = [[NSDate alloc] init];
newDate = [dateFormat2 dateFromString:dateSetString];
NSLog(@"new Date %@",newDate);//prints "1970-01-06 04:42:43 +0000"
最佳答案
问题是您的日期字符串不包含选择器中的所有信息,并且不包含足够的信息来重新创建日期。它缺少日、月和年,因此当您重新创建它时,它会假定您希望从 iOS 的 NSDate
日历系统的开头开始。
您要么需要存储从选择器收到的NSDate
(最好),要么需要使用包含足够信息的日期格式来创建特定的日期和时间。
编辑
根据您的评论,您只想使用 datePicker 中的工作日和时间,并使用这些值确定 future 的下一个日期。下面是实现这一点的代码:
NSCalendar *cal = [NSCalendar currentCalendar];
NSDate *pickerDate = self.datePickerView.date;
NSDateComponents *pickerComps = [cal components: NSWeekdayCalendarUnit |
NSHourCalendarUnit |
NSMinuteCalendarUnit |
NSSecondCalendarUnit
fromDate:pickerDate];
NSDate *currentDate = [NSDate date];
NSDateComponents *currentComps = [cal components: NSYearCalendarUnit |
NSMonthCalendarUnit |
NSWeekdayCalendarUnit |
NSDayCalendarUnit |
NSHourCalendarUnit |
NSMinuteCalendarUnit |
NSSecondCalendarUnit
fromDate:currentDate];
// Start with the current date and add/subtract the number of days needed to make it the same day of the week
NSDateComponents *newComps = [currentComps copy];
NSUInteger weekdayDiff = pickerComps.weekday - currentComps.weekday;
newComps.day = newComps.day + weekdayDiff;
// If needed, add 7 days in order to move this date into the future
if (newComps.day < currentComps.day) {
newComps.day = newComps.day + 7;
}
NSDate *newDate = [cal dateFromComponents:newComps];
if ([newDate compare:currentDate] == NSOrderedAscending) {
// This is true when the weekday started out the same but the time of day is earlier in the picker.
// Add 7 days
newComps.day = newComps.day + 7;
newDate = [cal dateFromComponents:newComps];
}
NSLog(@"%@", newDate);
关于iphone - 将 uidatepicker 格式化为另一个 nsdate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9986647/
我正在制作一个 iPhone 应用程序,我在其中使用 UIDatePicker 并在操作表中显示选定的时间。在操作表中,时间以 10 分钟的间隔显示。当我滚动 Datepicker 时, textfi
这是我第一次尝试 Swift 或 iPhone 应用程序,所以不用说,我现在不确定如何做很多事情。 现在我有一个带有文本字段和按钮的 View Controller 。我设法找到了几乎可以完成我需要的
我目前正在尝试弄清楚如何使用 ( .wheels) 将代码从 iOS 13 UIDatePicker 更改为 iOS 14 版本。您将在下方找到带有无法正常运行的日期选择器的应用程序屏幕截图和代码屏幕
我有 2 个 UITextField 调用同一个 UIDatePicker,如何让 UIDatePicker 知道在文本字段中设置所选日期时调用哪一个 UITextField? 最佳答案 您可以在这些
我需要显示一个带有 uidatepicker 的 View ..我尝试使用presentModalViewcontroller,但使用uidatepicker正确显示了我的新 View Control
iPhone UI 组件 UI DatePicker 不支持横向模式?仅在横向模式下它会抓取 2/3 的宽度。 如何让它用完全宽(480px)? 最佳答案 尝试手动重新/设置 UIDatePicker
我将 UIDatePicker 添加为 UITextField 的输入 View UIDatePicker *oBirth; NSDateFormatter *dateFormat; _edit
我在 UILabel 中有一个日期(例如“2010 年 12 月 14 日”)。我想将此日期设置为我的 UIDatepicker 的最小日期。我该如何做到这一点,请回复? 谢谢尼尚特 最佳答案 使用
我正在尝试构建一个日期选择器,其中今天为最小日期,2011 年 2 月 1 日为最大日期。 我已设置最短日期如下 [picker setMinimumDate: [NSDate date]]; 这工作
我在 iphone 日期选择器中遇到本地化问题。我希望日期选择器仅以英语显示日期,但现在它需要在 iphone 设置中设置为区域的语言。我尝试了各种没有用的方法像下面这样。 在 uidatepicke
我很茫然。我有一个 NSDate 传递给 UIDatePicker。当我设置为东部时区时,一切都很好。 当我设置为“中部”时,日期选择器显示的时间晚了 1 小时。 所以,如果我打开 NSLogs,这就
我想要一个 UIDatePicker,用户可以在其中选择月份和日期,但不能选择年份。我知道闰年多了一天,所以为了简单起见,我们把这一天扔掉。 是否有任何方法可以删除年份列或有 2 个带有月/日的卷轴,
有没有办法将 UIDatepicker 设置为分钟和秒与小时和分钟 编辑我最终添加了自己的 UIPicker 类,并自己创建了值和标签。 最佳答案 我认为 SDK 中没有任何内置方法可以执行此操作。尝
我在我的应用程序中创建了一个 UIDatePicker,并且还支持多种语言。我的 UIDatePicker 是在 Interface Builder 中创建的,并且我创建了一个单独的本地化 XIB,以
我在 View 中放置了一个 UIDatePicker,UIDatePicker 没有正确响应触摸 - 只有最右边的列/滚轮滚动 UIDatePicker 中的所有触摸。这与 View 中发生触摸的位
我有一个非常奇怪和令人困惑的问题。我找不到任何关于它的信息,它似乎是 Apple 的一个错误,但如果有人对如何解决这个问题有建议,那将会很有帮助。某些日期使用 UIDatePicker 将年份加 1,
在我的应用程序中,当用户单击 UITextField 时,应该会弹出 UIDatePicker。但是,它没有弹出。当我运行它时,它只显示“选择日期!”在行动表上,没有别的。 这是我的 ViewCont
我有一个 UIDatePicker,我希望将最小和最大日期范围设置为本周的星期四到星期三之间,我该如何设置?选择器日期是日期选择器,日期选择器文本字段是文本字段 pickerDate.datePick
我尝试设置最小和最大日期来限制用户的选择,但它不起作用: override func viewDidLoad() { let datePickerView : UIDatePi
func show(title: String, doneButtonTitle: String = "Done", cancelButtonTitle: String = "Cancel", def
我是一名优秀的程序员,十分优秀!