How would you do that?
I have a form with a UITextField. When I click in it I would like to display a UIDatePicker instead of the default Keyboard that pops-up by de
(IBAction)estableceHora:(id)sender{ Hora = horaPicker.date; NSDateFormatter *hf = [[NSDateFormatter alloc] init]; [hf setDateFormat:@"HH:MM"]; [self.txtHora setText:[hf stringFromDate:Hora]]; }