I have a navigation controller inside a popover in an iPad app. The navigation controller holds a hierarchy of list views. They all can have differing numbers of rows.
When I navigate from one to the next, and back, I change the content size using setContentSizeForViewInPopover: to the correct table height. This works, and looks good when the popover needs to grow to fit the view.
BUT when the new size is smaller than the current popover size, the system seems to start the size animation by "blacking out" (clipping) the portion of the view that is about to be truncated, which is an ugly visual artifact. Ideally, I'd like the extra portion of the view to remain visible and just be progressively covered up by the animation.
Anyone know a way around this or better way I should be thinking of it?
Thanks.