gpt4 book ai didi

ios - UIAlertController 被窗口上的 View 覆盖

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:25:24 25 4
gpt4 key购买 nike

当我将 UIView 添加到 keyWindow 时,alertController 被 View 覆盖。这是代码。

- (void)touch {
UIWindow *currentWindow = [UIApplication sharedApplication].keyWindow;
UIView *viewhaha = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds];
viewhaha.backgroundColor = [UIColor redColor];
[currentWindow addSubview:viewhaha];

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"123" message:@"123" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"123" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}];

[alertController addAction:action1];
[self presentViewController:alertController animated:YES completion:^{
}];
}

这是图片。 Image

你知道怎么解决吗?

最佳答案

将 View 添加到 window 将覆盖所有未添加到 window 并放置在其顶部的 View 。窗口层是您可以添加内容的最上层。如果您希望将 UIView 放置在 UIAlertViewController 下方,您必须将该 UIView 添加到 UIViewController 的 subview 中的 .view,您将在其中呈现 UIAlertController

关于ios - UIAlertController 被窗口上的 View 覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42406834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com