ios – Objective C – 我希望UIAlertController在点击按钮时不被删除

前端之家收集整理的这篇文章主要介绍了ios – Objective C – 我希望UIAlertController在点击按钮时不被删除前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想呈现一个带有2个按钮的UIAlertController.

一个按钮应该关闭警报,第二个按钮应该执行操作但在屏幕上保持警报.是否有一些可以执行的配置,它不会关闭警报?

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"title"
                                                               message:@"message"
                                                        preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"Do Something"
                                          style:UIAlertActionStyleDefault
                                        handler:^(UIAlertAction *action) {
    //Pressing this button,should not remove alert from screen
                                        }]];

[alert addAction:[UIAlertAction actionWithTitle:@"Close"
                                          style:UIAlertActionStyleDefault
                                        handler:^(UIAlertAction *action) {
    //Regular functionality- pressing removes alert from screen 
                                        }]];


[alert show];

建议将此(Prevent UIAlertController to dismiss)作为可能的答案,但问题涉及文本字段.我需要其中一个操作按钮,以便在按下时不关闭警报.

解决方法

你不能这样做.

只有一个解决方案是创建一个看起来像本机UIAlertController的自定义视图控制器.

原文链接:https://www.f2er.com/iOS/328799.html

猜你在找的iOS相关文章