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
UIAlertView is deprecated and unavailable for UIScene based applications, please use UIAlertController!
The text was updated successfully, but these errors were encountered:
same issue
Sorry, something went wrong.
We should comment on the code while the problem is pending.
`
(void)alertWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate additionalButtonTitle:(NSString *)additionalButtonTitle { [alertView dismissWithClickedButtonIndex:0 animated:NO]; // UIAlertView *alertViewTemp = [[UIAlertView alloc] initWithTitle:title // message:message // delegate:delegate // cancelButtonTitle:@"OK" // otherButtonTitles:additionalButtonTitle, nil]; // [alertViewTemp show]; alertView = alertViewTemp;
NSLog(@"%@: %@", title, message); }`
No branches or pull requests
UIAlertView is deprecated and unavailable for UIScene based applications, please use UIAlertController!
The text was updated successfully, but these errors were encountered: