self.photoImg = [UIImage imageWithCGImage:self.photoImg.CGImage
scale:[UIScreenmainScreen].scale
orientation:UIImageOrientationUp];
根本原因就是展示Image不是高分辨率image,没有按照屏幕分辨率展示,但是保存到相册后,是正常的高分辨率。所以在相册看图片清晰,在UIimageView图层看不清晰。
self.photoImg = [UIImage imageWithCGImage:self.photoImg.CGImage
scale:[UIScreenmainScreen].scale
orientation:UIImageOrientationUp];