vote up 1 vote down star

I have a UIDatePicker in Interface Builder, and I've set the mode content to only "Date" so that it doesn't display the time. When I run my app in the iPhone Simulator (I can't try this on hardware yet), every time I try to adjust the picker using the mouse, it will stay at that chosen date for a split-second and then it always resets back to the original date. Is this a known issue or did I do something wrong?

I'm looking specifically with help for UIDatePickers made in Interface Builder, I can't be arsed to actually write code.

FIXED - As Ben explains below it might be a better idea to just do this in code, as it works for me if I do it that way. HOWEVER, since it's not still really clear to me why it didn't work just using IB I'll leave this question open. Feel free to mark as "closed" later if there is more info needed to answer the question, or if this is a bug that is eventually fixed.

flag

After playing around with it a bit I got it to work fine, so I probably just mis configured something originally. – bpapa Dec 10 '08 at 17:05

closed as no longer relevant by bpapa Dec 10 '08 at 17:05

1 Answer

vote up 4 vote down check

this worked fine for me (in the sim). Here's the code I used:

CGSize  	size = self.view.bounds.size;
CGRect  	frame = CGRectMake(0, size.height - 216, 320, 216);
UIDatePicker  *picker = [[UIDatePicker alloc] initWithFrame: frame];

picker.datePickerMode = UIDatePickerModeDate;
[self.view addSubview: picker];
link|flag
Oh, I used Interface Builder to do it. I'm lazy and I want to minimize the amount of code to write. However I know that I don't always get what I want and if I want to use a table view I need to write code for it. Is it the same with using Interface Builder? – bpapa Oct 22 '08 at 17:52
I had no problems with an IB implementation of this either. However, when in doubt, switch to code! – Ben Gottlieb Oct 22 '08 at 18:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.