简体   繁体   中英

Remove blur effect from UIVisualEffectView

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM