I\'m using the below method to blur some images. Using instruments the CIImage\'s are leaking. I tried wrapping them in an @autoreleasepool, but no luck. Any ideas?
did you try to put CIImages to nil ?
-(UIImage *)blurImage:(UIImage *)image withStrength:(float)strength { //your code CGImageRelease(cgImage); cropped=nil; result = nil; inputImage = nil; context = nil; return returnImage; } }