marioEAE

Results 2 comments of marioEAE

``` //take screenshot of current view UIGraphicsBeginImageContext(self.view.bounds.size); [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); //Get blur from screenshot NSData *imageData = UIImageJPEGRepresentation(viewImage, kDRNRealTimeBlurViewScreenshotCompression); UIImage *image2 = [[UIImage imageWithData:imageData] drn_boxblurImageWithBlur:kDRNRealTimeBlurViewBlurRadius]; //crop...

This was my workaround, i also had the same problem... (you can check on closed issues)