Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SIAlertView/SIAlertView.m
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ + (void)showBackground

__si_alert_background_window = [[SIAlertBackgroundWindow alloc] initWithFrame:frame
andStyle:[SIAlertView currentAlertView].backgroundStyle];
[__si_alert_background_window makeKeyAndVisible];
__si_alert_background_window.hidden = NO;
__si_alert_background_window.alpha = 0;
[UIView animateWithDuration:0.3
animations:^{
Expand Down Expand Up @@ -411,7 +411,7 @@ - (void)show
window.rootViewController = viewController;
self.alertWindow = window;
}
[self.alertWindow makeKeyAndVisible];
self.alertWindow.hidden = NO;

[self validateLayout];

Expand Down