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?