Blur View is added to view. And blur view frame is equal to underlying view bounds. My view is inside collection view, when I scroll it, blurred image is moved.
When I substituted
[blurLayer convertRect:blurLayer.bounds toLayer:underlyingLayer]
with:
[self convertRect: self.bounds toView: self.underlyingView]
Hello,
Blur View is added to view. And blur view frame is equal to underlying view bounds. My view is inside collection view, when I scroll it, blurred image is moved.
When I substituted [blurLayer convertRect:blurLayer.bounds toLayer:underlyingLayer] with: [self convertRect: self.bounds toView: self.underlyingView]
everything works fine now.
Very strange why results are different
Can you please assist