We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d04bac commit 2884581Copy full SHA for 2884581
1 file changed
WYPopoverController/WYPopoverController.m
@@ -1613,6 +1613,7 @@ - (void)presentPopoverFromRect:(CGRect)aRect
1613
{
1614
if ((options & WYPopoverAnimationOptionFade) == WYPopoverAnimationOptionFade)
1615
1616
+ overlayView.alpha = 0;
1617
containerView.alpha = 0;
1618
}
1619
@@ -1626,6 +1627,8 @@ - (void)presentPopoverFromRect:(CGRect)aRect
1626
1627
1628
1629
[UIView animateWithDuration:WY_POPOVER_DEFAULT_ANIMATION_DURATION animations:^{
1630
+ overlayView.alpha = 1;
1631
+ overlayView.transform = CGAffineTransformIdentity;
1632
containerView.alpha = 1;
1633
containerView.transform = CGAffineTransformIdentity;
1634
} completion:^(BOOL finished) {
0 commit comments