Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Latest commit

 

History

History

zoom_a_scrollview

id title brief sdk
8C76A43F-B864-4315-9D27-10B13D110FAC
Zoom a ScrollView
This recipe shows how to load a large image into a scroll view and allow the user to pinch-zoom.

Recipe

To display an image inside a scroll view and support the pinch-to-zoom gesture:

  1. Add the image to your Xamarin.iOS project and ensure the Build Action is set to BundleResource. The example code loads the image “halloween.jpg”

  2. Declare class level fields for a UIScrollView and UIImageVIew

UIScrollView scrollView;
UIImageView imageView;
  1. Create a UIScrollView and add it to the View Controller:
scrollView = new UIScrollView (
    new CGRect (0, 0, View.Frame.Width
    , View.Frame.Height - NavigationController.NavigationBar.Frame.Height));/
View.AddSubview (scrollView);
  1. Create a UIImageView and add it to the Scroll View:
imageView = new UIImageView (UIImage.FromFile ("halloween.jpg"));
scrollView.ContentSize = imageView.Image.Size;
scrollView.AddSubview (imageView);
  1. Set the zoom properties:
scrollView.MaximumZoomScale = 3f;
scrollView.MinimumZoomScale = .1f;
scrollView.ViewForZoomingInScrollView += (UIScrollView sv) => { return imageView; };

Only a portion of the image will appear on the iPhone screen. The user can pan around the image by dragging or zoom with the pinch gesture.

To test the pinch gesture in the simulator, hold down the option key while dragging – two grey circles will be displayed to illustrate the simulated pinch gesture: