¡@

Home 

2014/10/15 ¤U¤È 10:05:31

iphone Programming Glossary: contentsizeforviewinpopover

Popover with embedded navigation controller doesn't respect size on back nav

http://stackoverflow.com/questions/2752394/popover-with-embedded-navigation-controller-doesnt-respect-size-on-back-nav

is why I decided to do a little investigation and find out how this works. This is what I discovered When you set the contentSizeForViewInPopover in your view controller it won't be changed by the popover itself even though popover size may change while navigating to.. helper method that would do the trick with setting the size void forcePopoverSize CGSize currentSetSizeForPopover self.contentSizeForViewInPopover CGSize fakeMomentarySize CGSizeMake currentSetSizeForPopover.width 1.0f currentSetSizeForPopover.height 1.0f self.contentSizeForViewInPopover.. CGSize fakeMomentarySize CGSizeMake currentSetSizeForPopover.width 1.0f currentSetSizeForPopover.height 1.0f self.contentSizeForViewInPopover fakeMomentarySize self.contentSizeForViewInPopover currentSetSizeForPopover Then just invoke it in viewDidAppear of desired..

UIPopoverController w/ UINavigationController Subview contentSizeForViewInPopover doesnt work on Parent

http://stackoverflow.com/questions/2926308/uipopovercontroller-w-uinavigationcontroller-subview-contentsizeforviewinpopove

w UINavigationController Subview contentSizeForViewInPopover doesnt work on Parent I have a UIPopoverController with a subclass UINavigationController. Both the parent and child views.. UINavigationController. Both the parent and child views are UITableviews. When i call parent view originally with contentSizeForViewInPopover 320 480 it works great. When i click into the child view i resize the popover to contentSizeForViewInPopover 320 780 When.. with contentSizeForViewInPopover 320 480 it works great. When i click into the child view i resize the popover to contentSizeForViewInPopover 320 780 When return back to the parent view i cannot get the popover to resize back to contentSizeForViewInPopover 320 480..