1

我有一個UIView中的scrollView和ScrollView.scrollview和imageview中的imageView具有相同的size.I設置圖像視圖內容模式是UIViewContentModeScaleAspectFit。當我雙擊圖像視圖時,圖像視圖不僅縮放圖像視圖的可見圖像,而且縮放圖像的透明部分。如何僅放大圖像視圖中的可見圖像不透明圖像的一部分?

我只想縮放圖像視圖的可見圖像。

image_scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0,0,screen_width,550)]; 
self.image_view = [[UIImageView alloc] initWithFrame:CGRectMake(0,0, image_scroll.frame.size.width, image_scroll.frame.size.height)]; 
self.image_view.backgroundColor=[UIColor clearColor]; 
self.image_view.contentMode = UIViewContentModeScaleAspectFit; 
self.image_view.clipsToBounds = true; 
self.image_view.userInteractionEnabled = YES; 
self.image_view.image=[UIImage imageNamed:@"img1.png"]; 
doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)]; 
[doubleTap setNumberOfTapsRequired:2]; 
[self.image_view addGestureRecognizer:doubleTap]; 
[image_scroll setMaximumZoomScale:4.0]; 
[image_scroll addSubview:self.image_view]; 


- (void)handleDoubleTap:(UIGestureRecognizer *)gestureRecognizer { 

     NSLog(@"handleDoubleTap"); 

     float newScale = [image_scroll zoomScale] * 2.0; 

     if (newScale > image_scroll.maximumZoomScale){ 
      newScale = image_scroll.minimumZoomScale; 
      CGRect zoomRect = [self zoomRectForScale:newScale withCenter:[gestureRecognizer locationInView:gestureRecognizer.view]]; 

      [image_scroll zoomToRect:zoomRect animated:YES]; 

     } 
     else{ 

      newScale = imageScroll.maximumZoomScale; 
      CGRect zoomRect = [self zoomRectForScale:newScale withCenter:[gestureRecognizer locationInView:gestureRecognizer.view]]; 

      [image_scroll zoomToRect:zoomRect animated:YES]; 
     } 
    } 
} 


- (CGRect)zoomRectForScale:(float)scale withCenter:(CGPoint)center { 

    CGRect zoomRect; 
    // the zoom rect is in the content view's coordinates. 
    // At a zoom scale of 1.0, it would be the size of the imageScrollView's bounds. 
    // As the zoom scale decreases, so more content is visible, the size of the rect grows. 
    zoomRect.size.height = [image_scroll frame].size.height/scale; 
    zoomRect.size.width = [image_scroll frame].size.width/scale; 

    // choose an origin so as to get the right center. 
    zoomRect.origin.x = center.x - (zoomRect.size.width/2.0); 
    zoomRect.origin.y = center.y - (zoomRect.size.height/2.0); 

    return zoomRect; 

} 

1.Original圖像 enter image description here 2.After圖像縮放 enter image description here enter image description here

在此先感謝。

+0

我也遇到了這個問題。 –

回答