I am at a loss. I have an NSDate that gets passed to a UIDatePicker. When I am set to the Eastern time zone, all is fine.
When I am set to Central, the date picker s
I did some more searching. It sure helps if you use the correct search terms.
Anyhow, I found the answer on the iPhoneDevSDK - http://www.iphonedevsdk.com/forum/iphone-sdk-development/52533-uidatepicker-bug-ios-4-a.html - UIDatePicker bug.
It looks like there might be a UIDatePicker bug.
I added this to my code before I set the picker and it fixed the problem.
datePicker.timeZone = [NSTimeZone localTimeZone];
No more problem (for now).