alvises / FPPopover

FPPopover provides an alternative to the native iOS UIPopoverController, adding support for iPhone and additional opportunities to customize the look and feel of the popovers.
http://www.poeticoding.com/fppopover-a-customizable-uipopovercontroller-for-iphone-and-ipad/
Other
901 stars 250 forks source link

Resetting view on Orientation Changes with iOS >= 6.0 #88

Open zedrdave opened 11 years ago

zedrdave commented 11 years ago

Code keeps throwing view resets when the device orientation changes between flat/upright.

Pretty sure the conditional code in deviceOrientationDidChange:

    else
    {
        shouldResetView = YES;
    }

Should be:

    else
    {
        shouldResetView = NO;
    }