How to capture UIView to UIImage without loss of quality on retina display My code works fine for normal devices but creates blurry images on retina devices. Does anybody know a solution for my issue? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size);... May 16, 2022 0 Comments