在Apples Developer Class-Reference中,它表示可以对UIVisualEffectsView
应用三种类型的模糊效果:
typedef enum {
UIBlurEffectStyleExtraLight,
UIBlurEffectStyleLight,
UIBlurEffectStyleDark
} UIBlurEffectStyle;
它说:
- 的 UIBlurEffectStyleLight
在视图中创建模糊效果。视图的区域是 基本观点的相同近似色调。
适用于iOS 8.0及更高版本。
我尝试使用UIBlurEffectStyleLight
,但很明显这个效果会为我不想要的视图添加白色叠加效果......
UIVisualEffectsView
甚至可以实现这一点吗?或者我是否必须使用完全不同的添加模糊方法?