Skip to content

Commit

Permalink
Merge pull request nicklockwood#86 from kmy504/master
Browse files Browse the repository at this point in the history
fix console error on iOS8 issue nicklockwood#44
  • Loading branch information
nicklockwood committed Sep 2, 2015
2 parents ad60541 + b9cbdc8 commit 61aa445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FXBlurView/FXBlurView.m
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ - (UIImage *)blurredImageWithRadius:(CGFloat)radius iterations:(NSUInteger)itera
//create image context from buffer
CGContextRef ctx = CGBitmapContextCreate(buffer1.data, buffer1.width, buffer1.height,
8, buffer1.rowBytes, CGImageGetColorSpace(imageRef),
CGImageGetBitmapInfo(imageRef));
(CGBitmapInfo)kCGImageAlphaNoneSkipLast);

//apply tint
if (tintColor && CGColorGetAlpha(tintColor.CGColor) > 0.0f)
Expand Down

0 comments on commit 61aa445

Please sign in to comment.