Less Blur with `Visual Effect View with Blur`?
It’s a pity that Apple did not provide any options for blur effect. But this workaround worked for me – animating the blur effect and pausing it before completion. func blurEffectView(enable enable: Bool) { let enabled = self.blurView.effect != nil guard enable != enabled else { return } switch enable { case true: let blurEffect … Read more