We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following code, it looks like an app in landscape mode doesn't correctly fill the screen (see attached).
+ (void)showBackground { if (!__si_alert_background_window) { __si_alert_background_window = [[SIAlertBackgroundWindow alloc] initWithFrame:[UIScreen mainScreen].bounds andStyle:[SIAlertView currentAlertView].backgroundStyle]; [__si_alert_background_window makeKeyAndVisible]; __si_alert_background_window.alpha = 0; [UIView animateWithDuration:0.3 animations:^{ __si_alert_background_window.alpha = 1; }]; } }
The text was updated successfully, but these errors were encountered:
looks like
__si_alert_background_window.rootViewController = [UIViewController new];
solves the problem.
Sorry, something went wrong.
No branches or pull requests
In the following code, it looks like an app in landscape mode doesn't correctly fill the screen (see attached).
The text was updated successfully, but these errors were encountered: