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;
}
Th开发者_JAVA百科e problem is My image gets blury while zoomig. Any one have idea how to redraw image with the zoom size.
hi set maximumZoomScale=1.0f. it wont blurr :)
精彩评论