I've got an UITableView (displayed modally on the iPad) with two different kind of UITableViewCells: The first one is being used to enter text, the second one to pick a value from a list displayed in an UIPopover. I'm using my UITableViewCell subclasses more like a controller class to give them the chance to display the UIPopover list themselves.
Now, when one of these list cells would display it's UIPopover it sends out a NSNotification to tell the text cells that they should resign first responder (or, more specifically their UITextField subviews) in order to dismiss the keyboard.
In the simulator all the cells receive the notification and call -resignFirstResponder. But the keyboard does not disappear and so the UIPopover appears with a way too small frame. When I manually dismiss the keyboard now, the frame does not resize. When I dismiss the keyboard manually before the cell would display the UIPopover everything gets displayed nicely.
Is there anything I'm missing?