Remove blur effect from UIVisualEffectView

1.4k Views Asked by At

How to remove blur effect from UIVisualEffectView control in xamarin.ios. I don't want that effect. I just want to keep it simple.

1

There are 1 best solutions below

0
On

UIVisualEffectView inherits from UIView.

So, if you don't need the blur effect, you can just set the Hidden property of UIVisualEffectView to true.

visualEffectView.Hidden = true;

Also, you can set it back when you need the effect again.