1

是否可以更改UIVisualEffectView超出标准的额外光亮和暗色的颜色?

我需要实现明暗预设之间的阴影。

4

1 回答 1

2

如果您想要类似UIVisualEffectView但具有更多控制权的东西,我建议您查看 Apple 的UIImageEffects示例代码。

您可以在iOS 开发人员库中找到它:模糊和着色图像

以下是您可能感兴趣的方法:

+ (UIImage*)imageByApplyingBlurToImage:(UIImage*)inputImage withRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage

注意tintColorsaturationDeltaFactor参数。

于 2016-02-08T01:16:23.667 回答