CoreData - 如何设置彼此独立的日期和时间?
我有一个名为 VisitDate 的 coredata 属性,
我想使用单独的选择器相互独立地设置日期和时间。
我意识到当我设置时间时,我需要获取visitDate的现有日期、月份和年份,但只从NSDatePicker设置时间。
相反,当我设置日期时,我需要抓取visitDate现有的小时、分钟和秒,并且只设置日期。
我想我要问的是如何通过使用另一个 NSDate 实例的选择元素来创建 NSDate 实例?
I have a coredata attribute called visitDate
I want to set the date and time independently of each other using separate pickers.
I realize that when I set the time, I need to grab the existing date, month and year of visitDate, but only set the time from the NSDatePicker.
Conversely, when I set the date, I need to grab the existing hour, minute and second of visitDate, and only set the date.
I guess what I'm asking is how does one create an NSDate instance by using select elements of another NSDate instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 NSDateComponent 。另请参阅日期和时间编程指南。
Using NSDateComponents. See also the Date and Time Programming Guide.
可能代码比必要的多一点,但这就是我正在工作的。
Might be a little more code than necessary, but this is what I got working.
如果您使用 UIDatePicker (您提到了 NSDatePicker),则可以设置 UIDatePicker.datePickerMode 和 UIDatePicker.date。如果两个选择器同时出现在屏幕上,您可以在
UIControlEventValueChanged
事件上复制日期。如果没有,当您显示选择器时设置 UIDatePicker.date 并在隐藏选择器时将其复制到visitDate 可能会更容易。If you're using UIDatePicker (you mentioned NSDatePicker), you can set UIDatePicker.datePickerMode and UIDatePicker.date. If both pickers will be on-screen at the same time, you can copy the date over on a
UIControlEventValueChanged
event. If not, it might be easier to set UIDatePicker.date when you show the picker and copy it to visitDate when you hide the picker.