I would like to get a light blur effect , in which you still can somehow recognise the image, or even adjust it .
I used to have the Apple one :
UIVisualEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];
alphaView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
Which is not really "light" , but is very strong so you cant see the image anymore.
I would rather not using external 3rd classes, because from my experience they turned to be problematic.
I also remember Apple used to have a class called : UIIMAGE+BLUR
, before the UIVisualEffectView
which let you adjust things.
Is it still valid and acceptable by the App Store ?