nicklockwood / FXBlurView

[DEPRECATED]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EXC_BAD_ACCESS

RabbitMC opened this issue · comments

FXBlurView crashing after 20 blurred images exactly here

vImageBoxConvolve_ARGB8888(&buffer1, &buffer2, tempBuffer, 0, 0, boxSize, boxSize, NULL, kvImageEdgeExtend);

I'm calling the images

UIImage *img = [artwork imageWithSize:_blurredCover.bounds.size];
img = [img blurredImageWithRadius:8.0f
iterations:3
tintColor:[UIColor whiteColor]];
_blurredCover.image = img;

It's crashing for me too in this exact line. I have a dynamic blur view and change its blurRadius dynamically based on some scroll view's content offset.

I'm using an iPhone 5 with iOS 7.

Any news on this issue ?

@RabbitMC did u fix it?

Having this same issue.

Try this fork: https://github.com/Vienta/FXBlurView
It adds conversion of non-ARGB8888 images into ARGB8888.