Popularity
8.7
Stable
Activity
1.1
Growing
2,510
57
381

Code Quality Rank: L3
Programming language: Swift
License: MIT License
Tags: Media     Image    
Latest version: v6.0.0

ImageViewer alternatives and similar libraries

Based on the "Image" category.
Alternatively, view ImageViewer alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ImageViewer or a related project?

Add another 'Image' Library

README

CI Status Swift 5.0 Carthage compatible Version Platforms iOS License MIT

Single image view

Gallery

For the latest changes see the [CHANGELOG](CHANGELOG.md)

Install

CocoaPods

pod 'ImageViewer'

Carthage

github "Krisiacik/ImageViewer"

Sample Usage

For a detailed example, see the Example!

// Show the ImageViewer with the first item
self.presentImageGallery(GalleryViewController(startIndex: 0, itemsDataSource: self))

// The GalleryItemsDataSource provides the items to show
extension ViewController: GalleryItemsDataSource {
    func itemCount() -> Int {
        return items.count
    }

    func provideGalleryItem(_ index: Int) -> GalleryItem {
        return items[index].galleryItem
    }
}

ImageViewer version vs Swift version.

ImageViewer 6.0+ is Swift 5 ready! 🎉

If you use earlier version of Swift - refer to the table below:

Swift version ImageViewer version
5.x >= 6.0
4.x 5.0
3.x 4.0
2.3 3.1 [⚠️](CHANGELOG.md#version-31)
2.2 <= 2.1

License

ImageViewer is licensed under the MIT License, Version 2.0. See the [LICENSE](LICENSE) file for more info.

Copyright (c) 2016 MailOnline


*Note that all licence references and agreements mentioned in the ImageViewer README section above are relevant to that project's source code only.