DZNPhotoPickerController icon indicating copy to clipboard operation
DZNPhotoPickerController copied to clipboard

Improve the scroll insets of image edition while zooming in and out

Open dzenbot opened this issue 11 years ago • 1 comments

dzenbot avatar Jan 20 '14 05:01 dzenbot

same!! Please Fix it

cooler333 avatar Jan 20 '15 15:01 cooler333

对于长图的处理是: CGFloat vInset = fabs((maskHeight-imageSize.height)/2); 更换为 1、CGFloat vInset = fabs(fabs(maskHeight - self.view.frame.size.height)/2 -fabs(imageSize.height - self.imageView.frame.size.height) /2 ); 2、scrollViewDidEndZooming 中增加 _lastZoomScale = self.scrollView.zoomScale; [self updateScrollViewContentInset];

roadProgram avatar Mar 08 '18 09:03 roadProgram