0

I'm trying to build a blurred, iOS 7 like NSView, which blurs the background.

So far it's working fine by applying a Gaussian background filter to the layer-backed NSView. The problem is that not only the area right underneath the view gets blurred, but the whole parent view area is blurred.

Layer-backing the parent view doesn't help. Any idea on how to only blur the immediate area of the smaller subview?

Raffael
  • 1,119
  • 10
  • 20

1 Answers1

0

Apparently you have to set

[blurredView.layer setMasksToBounds:YES];.

Raffael
  • 1,119
  • 10
  • 20