I have a UIPopoverController containing a UITableView. The popover is resized in its view controller's -viewDidAppear function to fit the contents of the table. While the popover resizes properly, its arrow is usually no longer pointing at the original CGRect. Is there a way to force the popover to reposition itself after a resize so that its arrow is pointing at its intended target?
EDIT: I can't set the size of the popover in -viewDidLoad since the table view does not load its data until -viewDidAppear is called, and as a result I do not know what size the popover should be until then. In addition, I resize the popover when one of the table view cells is clicked to display another view and this also results in the arrow no longer pointing at its intended target.
UITableView's actual content size is longer, you will get the scrollbars, just like what happens when you load a table view on an iPhone and the content is taller than 480 pixels. – Shaggy Frog Sep 8 '10 at 19:55UITableViewis taller than its frame, it will show scrollbars. That is a completely separate topic from what you are asking, which is adjusting the frame of a popover view, which I have explained how to do. – Shaggy Frog Sep 8 '10 at 23:55UITableViewfor its content size, and then dispose of this hidden view controller. It's dodgy. Maybe iOS 4.2 will have more control over popover controllers, but for now, you're flying too close to the sun. – Shaggy Frog Sep 9 '10 at 7:22