Is it any way to change blur effect style on-the-fly after creating view?
E.g. i've created in Storyboard blur view, but i need to change effect style from .Light to .Dark programmatically.
I can't just re-create view, because I have information in that view and dynamic constraints (constraints change with animations in some situations).
UIVisualEffectView
propertieseffect
andcontentView
are read-only, but you might be able to re-use thecontentView
. – Corrosion