如何创建类似于 iOS 默认警报的视觉效果来警报视图?

How can I create Visual effect to alert view similar to iOS default alerts?

我创造了UIVisualEffectView,我很喜欢它。但是,我不知道如何创建 iOS 类似具有模糊效果的警报视图。

这是解释我需要的截图。

这是示例,可能对您有所帮助 您可以更改 BlurEffect 类型

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
UIVisualEffectView *backgroundView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
[self.view insertSubview:backgroundView atIndex:0];