查看最新更改,请参阅 变更日志
安装
CocoaPods
pod 'ImageViewer'
Carthage
github "MailOnline/ImageViewer"
示例用法
有关详细示例,请参阅 示例!
// 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 版本与 Swift 版本。
ImageViewer 5.0+ 已经针对 Swift 4 做了准备!
如果您使用的是 Swift 的早期版本,请参阅下表
Swift 版本 | ImageViewer 版本 |
---|---|
5.x | >= 6.0 |
4.x | >= 5.0 |
3.x | 4.0 |
2.3 | 3.1 |
2.2 | <= 2.1 |
许可证
ImageViewer 在 MIT 许可证下授权,版本 2.0。有关更多信息,请参阅 LICENSE 文件。
版权所有 © 2016 MailOnline