For the latest changes see the CHANGELOG
Just add the repository URL in Xcode.
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
extensionViewController:GalleryItemsDataSource{func itemCount()->Int{return items.count
}func provideGalleryItem(_ index:Int)->GalleryItem{returnitems[index].galleryItem
}}
