Swiftpack.co - yuriiik/ISVImageScrollView as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by yuriiik.
yuriiik/ISVImageScrollView 0.3.0
Image preview component with zoom, scroll and rotation support
⭐️ 32
🕓 2 years ago
.package(url: "https://github.com/yuriiik/ISVImageScrollView.git", from: "0.3.0")

ISVImageScrollView

CI Status Version License Platform

A subclass of the UIScrollView tweaked for image preview with zooming, scrolling and rotation support.

Overview

When you need to incorporate an image preview into your application, usually you start with the UIScrollView and then spend hours tweaking it to get functionality similar to the default Photos app. This control provides you out-of-the-box functionality to zoom, scroll and rotate an UIImageView attached to it.

Features

  • Pinch to zoom and scroll
  • Tap to zoom
  • Scale image when scroll view bounds change, e.g. after rotation
  • Set appropriate content offset after rotation to make sure visible content remains the same

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

  • Tested on iOS 9.3 and higher, but should work on iOS 8.x as well

Installation

CocoaPods

ISVImageScrollView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ISVImageScrollView'

Swift Package Manager

ISVImageScrollView is also available via the Swift Package Manager.

Usage

ISVImageScrollView is very easy to use.

  1. Create a UIImageView instance and assign it an image.
  2. Create an ISVImageScrollView instance (either programmatically or via the Storyboard/XIB) and assign the created UIImageView object to its imageView property.
  3. Don't forget to set maximumZoomScale and delegate properties of the ISVImageScrollView instance.
  4. Finally in delegate class implement viewForZoomingInScrollView: method and return the UIImageView object created in step 1.
let image = UIImage(named: "Photo.jpg")
self.imageView = UIImageView(image: image)
self.imageScrollView.imageView = self.imageView
self.imageScrollView.maximumZoomScale = 4.0
self.imageScrollView.delegate = self
func viewForZooming(in scrollView: UIScrollView) -> UIView? {
  return self.imageView
}

Author

Yurii Kupratsevych

[email protected]

License

ISVImageScrollView is available under the MIT license. See the LICENSE file for more info.

GitHub

link
Stars: 32
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Swift Package Manager support
3 years ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics