我正在使用 UIPopoverPresentationController 实现一个弹出视图。
这样做的问题是,默认情况下,我有一个用于控制器的大半径阴影。
我想禁用它 - 覆盖。
我努力了:
自定义布局阴影(使用 UIPopoverBackgroundView):
layer.shadowColor = UIColor.white.withAlphaComponent(0.01).cgColor layer.shadowOffset = .zero layer.shadowRadius = 0
在视图调试中 - 我可以在弹出的 4 个带有灰色渐变背景的图像视图后面看到:
我确信这是一种默认行为,即在弹出框后面显示叠加层。
如何禁用此功能?