Preferred content size ignored if width is 0
Say you have a view controller whose preferredContentSize property has been set to CGSizeMake(0, 200). When presenting this controller inside a UIPopoverController, you might think one of the following would happen:
A) The view controller will get the default popover width and 200 height
B) The view controller will get 0 width and 200 height
But what actually happens is:
C) The view controller will get the default popover width and default popover height.


















