如何在Appdelegate.m的 active方法中modal出一个UIAlertController

发布于 2022-09-02 15:35:58 字数 233 浏览 18 评论 0

如何在Appdelegate.m的 active的代理方法中modal出一个UIAlertController?

报错信息大家可以忽略,主要问题就在最后一块儿

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心安伴我暖 2022-09-09 15:35:58

//初始化UIAlertController

UIAlertController *alertCtl = [UIAlertController alertControllerWithTitle:@"提示" message:@"AppDelegate中" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil];
[alertCtl addAction:alertAction];
//初始化UIWindows
UIWindow *aW = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
aW.rootViewController = [[UIViewController alloc]init];
aW.windowLevel = UIWindowLevelAlert + 1;
[aW makeKeyAndVisible];
[aW.rootViewController presentViewController:alertCtl animated:YES completion:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文