I have a CALayer and a sublevel. What I want to achieve is blurring the super layer (the area under the sublevel), as standard sheets do. I tried setting .compositingFilter to a sublevel, but this does not work.
Any ideas how to solve this?
Code from init sublayers:
CIFilter *blur = [CIFilter filterWithName:@"CIGaussianBlur"]; [blur setDefaults]; self.layer.backgroundFilters = [NSArray arrayWithObject:blur];
source share