iphone uiscrollview and uiimageview - setting init

2019-01-18 14:40发布

问题:

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];

回答1:

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

-(UIView *) viewForZoomingInScrollView:(UIScrollView *)inScroll {
  return imageView;
}


回答2:

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;


回答3:

There is a zoomScale property that you can set.



回答4:

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



回答5:

You must set the initial zoom when the viewwillappear and not when the viewdidload for it too work.