I have an app that runs on IOS 7 and 8. On 8 I use UIBlurEffect with UIBlurEffectStyleLight which creates a beautiful vibrant blur. On IOS 7 I use IOS Blur library which seems very similar to UIBlurEffectStyleExtraLight in IOS 8. This creates a more fuzzy / white looking blur effect. Is there any way to make the IOS Blur (which is essentially just a UItoolbar overlay) on IOS 7, look more like UIBlurEffectStyleLight on IOS 8?
Thanks!
EDIT I was able to get an identical image by using Apple's UIImage+ImageEffects category and using applyLightEffect.
#import "UIImage+ImageEffects.h"
self.menu.image = [self.menu.image applyLightEffect];
Leaving this question open for now in case there are solutions that work for real time as well.