Skip to content

Pinch to zoom in and out on an image with UIScrollView

   

This is a sample of how to zoom in and out on an image in a UIScrollView.
Pinch to make the image larger or smaller.

alt alt

import UIKit
class ViewController: UIViewController, UIScrollViewDelegate {
var scrollView: UIScrollView!
var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
scrollView = UIScrollView()
scrollView.frame = self.view.frame
scrollView.delegate = self
scrollView.maximumZoomScale = 3.0
scrollView.minimumZoomScale = 1.0
self.view.addSubview(scrollView)
imageView = UIImageView()
imageView.image = UIImage(named: "snorlax")
imageView.frame = scrollView.frame
scrollView.addSubview(imageView)
}
func viewForZooming(in scrollView: UIScrollView) -> UIView? {
return self.imageView
}
}

  1. Removing the back button in UINavigationController.
  2. Execute after ○ seconds, execute every second
  3. Setting a header in UITableView
  4. Adding a Custom Cell to UICollectionView
  5. UICollectionView
  6. Skip the Export Compliance Wizard
  7. Obtaining JSON from the API using Alamofire