romaonthego / REFrostedViewController

iOS 7/8 style blurred view controller that appears on top of your view controller.
MIT License
2.96k stars 494 forks source link

Lack of option to disable desaturation when using liveBlur #15

Closed chris37879 closed 11 years ago

chris37879 commented 11 years ago

When the liveBlur option is on, the image that becomes blurred is completely desaturated. turning liveBlur off solves the problem, except that the blurred image isn't updated everytime the menu is opened so if the things behind the menu have moved, the blurred image is now incorrect.

romaonthego commented 11 years ago

I'm using a UIToolBar as a background view for the live blurring. This is pretty much what happens when you set a UIToolBar.blurTintColor property to anything except nil.

I just added a property liveBlurBackgroundStyle where you can switch between light / dark blurred backgrounds, to make it work, set blurTintColor to nil.

chris37879 commented 11 years ago

Fantastic, thank you.