是否可以更改UIVisualEffectView
超出标准的额外光亮和暗色的颜色?
我需要实现明暗预设之间的阴影。
如果您想要类似UIVisualEffectView
但具有更多控制权的东西,我建议您查看 Apple 的UIImageEffects
示例代码。
以下是您可能感兴趣的方法:
+ (UIImage*)imageByApplyingBlurToImage:(UIImage*)inputImage withRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage
注意tintColor
和saturationDeltaFactor
参数。