0
votes

I am trying to zoom to a image in my view. For that I used UIScrollView and in that scrollView I placed a ImageView. I had set min and max zoom scale of scrollview.

I used this code too..

- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView {
return imgView;
}

The problem is My image gets blury while zoomig. Any one have idea how to redraw image with the zoom size.

1
Just to check, how big (in pixels) is your scrollview and how big (in pixels) is the image?deanWombourne

1 Answers

0
votes

hi set maximumZoomScale=1.0f. it wont blurr :)