Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iphone uiscrollview and uiimageview - setting initial zoom

I use the following code to load an image into an scroll view. The image always loads at 100% zoom. Is there a way to set it to load to another zoom level, say .37?

I have tried scrollView.zoomScale = .37 but it didnt seem to work

UIImageView *tempImage = [[UIImageView alloc]initWithImage:[UIImage imageWithData:data]];
        self.imageView = tempImage;

        scrollView.contentSize = CGSizeMake(imageView.frame.size.width , imageView.frame.size.height);
        scrollView.maximumZoomScale = 1;
        scrollView.minimumZoomScale = .37;
        scrollView.clipsToBounds = YES;
        scrollView.delegate = self;

        [scrollView addSubview:imageView];
like image 598
Brodie Avatar asked Apr 21 '10 17:04

Brodie


4 Answers

Zooming only works when you implement the viewForZoomingInScrollView: delegate callback.

-(UIView *) viewForZoomingInScrollView:(UIScrollView *)inScroll {
  return imageView;
}
like image 171
drawnonward Avatar answered Nov 20 '22 20:11

drawnonward


I figured it out... I was using scrollView.zoomScale = 0.37; before I loaded the image changed code and it works great.

UIImageView *tempImage = [[UIImageView alloc]initWithImage:[UIImage imageWithData:data]];
self.imageView = tempImage;

scrollView.contentSize = CGSizeMake(imageView.frame.size.width , imageView.frame.size.height);
scrollView.maximumZoomScale = 1;
scrollView.minimumZoomScale = .37;
scrollView.clipsToBounds = YES;
scrollView.delegate = self;
[scrollView addSubview:imageView];
scrollView.zoomScale = .37;
like image 45
Brodie Avatar answered Nov 20 '22 18:11

Brodie


There is a zoomScale property that you can set.

like image 3
kennytm Avatar answered Nov 20 '22 18:11

kennytm


I was facing same issue..
i used the built in method : scrollViewForImage

This will set the initial zoom to level 5

[self.scrollViewForImage setZoomScale:5 animated:YES];

code for minimum zoom level

self.scrollViewForImage.minimumZoomScale=1;

code for Maximum Zoom Level

self.scrollViewForImage.maximumZoomScale=12.0;

Hope this will help

like image 1
Sankalp S Raul Avatar answered Nov 20 '22 18:11

Sankalp S Raul