I am trying to make a UIView (Genres
) have a blurry background. I have tried this code. But it is too blurry:
_Genres.opaque = NO;
_Genres.backgroundColor = [UIColor clearColor];
UIToolbar *fakeToolbar = [[UIToolbar alloc] initWithFrame:_Genres.bounds];
fakeToolbar.autoresizingMask = _Genres.autoresizingMask;
[_Genres insertSubview:fakeToolbar atIndex:0];
So I tried this:
_Genres.alpha = 0.9;
But this just makes it see through not less blurry.
The UIView also needs a "live blur".
These are two images. The first one is the actual toolbar (which I want it to be like) and the second one is using the code above. They have both been taken over the same background.
As you can see underneath the toolbar the blur is a lot less intense.
How can I make it more like the original toolbar?