gpt4 book ai didi

ios - iOS 13 中弹出窗口的阴影消失了

转载 作者:行者123 更新时间:2023-12-01 19:23:39 32 4
gpt4 key购买 nike

在运行 iOS 13 的设备上,弹出窗口阴影不再显示。当弹出窗口显示在包含自定义 UIView 且其正下方有 CAEAGLLayer 支持层的 ViewController 上时,会发生这种情况。

我知道 CAEAGLLayer 在 iOS 13 中已被弃用,但一定有办法解决这个问题。

有趣的是,在截取屏幕截图时,在这里显示屏幕截图上出现阴影的问题!太奇怪了...

enter image description here

我尝试创建一个自定义 UIPopoverBackgroundView 并且其中的阴影集工作正常。

UIPopoverPresentationController *popoverController = viewController.popoverPresentationController;
popoverController.permittedArrowDirections = UIPopoverArrowDirectionDown;
popoverController.popoverBackgroundViewClass = [PopoverBackgroundView class];

enter image description here

任何提示或想法将不胜感激!我花了一整天的时间试图弄清楚这个问题。 :/

最佳答案

好吧,对于那些遇到类似问题的人,我可以通过在 View Controller 的 View WillDisplay 方法中使用以下方法来修补临时修复。

+ (void)fixShadowForViewController:(UIViewController*)viewController
{
if (viewController.popoverPresentationController)
{
NSOperatingSystemVersion ios13 = (NSOperatingSystemVersion){13, 0, 0};
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:ios13])
{
UIView *popoverView = viewController.popoverPresentationController.containerView;
popoverView.layer.shadowColor = [UIColor blackColor].CGColor;
popoverView.layer.shadowOpacity = 0.16f;
popoverView.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
popoverView.layer.shadowRadius = 32.0f;
}
else
{
// The arrow doesn't get colored properly on iOS 12 and lower so we take the background
// color of the view controller and apply it to make it match.
viewController.popoverPresentationController.backgroundColor = viewController.view.backgroundColor;
}
}
}

关于ios - iOS 13 中弹出窗口的阴影消失了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58443155/

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