Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

UIDatepicker artifact

I'm using the standard inputView = someObjectThatIsAUIDatePicker trick to show a date picker instead of a keyboard to enter dates however; once the date picker is hidden there's still a grey box where the date picker was.

Here's the code executing when you tap on Show history:

- (IBAction)getHistoryButtonWasPressed:(id)sender
{
    _startPicker.hidden = YES;
    _endPicker.hidden = YES;
    [self reloadTable]; // this does a query and then calls reloadData on the table
}

I've tried removing the pickers from the view and doing a setNeedsDisplay on the super and current views, etc.

2 Answers

If you set the inputView of the textField, then need to use the resignFirstResponder method for "hide" the inputView. (not the hidden property of the inputView) You can use this method too, when the inputView is just a default keyboard.

I tossed in a [_startPicker resignFirstResponder] and it worked. Thanks Dávid!