0

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

anand
  • 1,399
  • 5
  • 23
  • 55

1 Answers1

-1

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.

Kevin Li
  • 2,258
  • 1
  • 9
  • 18