我知道一些模糊图像的方法 - Apple class
(ApplyLightEffect
)和CIFilter
,但它们都需要UIImage
并创建模糊。< / p>
我需要在移动的图像上方创建一些图层,并模糊该图层,以便后面的所有内容都是模糊的。模糊效果应该非常温和。
我怎么能以简单的方式得到它?有更多方法可以将类似的效果应用于我可以检查的模糊效果吗? (这是动态的)
谢谢。
答案 0 :(得分:0)
查看此iOS框架:
而不是像这样实例化您的视图:
UIView *view = [[UIView alloc] init];
导入FXBlurView并执行此操作:
FXBlurView *blurredView = [[FXBlurView alloc] init];
您还可以设置一些自定义参数:
[blurredView setBlurRadius:30]; //Sets radius of blur
[blurredView setDynamic:NO]; //Disables whether the blur updates in real time.
[blurredView setBlurEnables:YES]; //Enables/disables the blur.
[blurredView setTintColor:nil]; //Set to nil to get rid of the blue glow from the default iOS tint color.
应该这样做。