{"id":18308654,"url":"https://github.com/dimix/imageslideshow","last_synced_at":"2026-03-05T07:31:58.555Z","repository":{"id":44777356,"uuid":"71045971","full_name":"dimix/ImageSlideShow","owner":"dimix","description":"A Swift Image SlideShow for iOS","archived":false,"fork":false,"pushed_at":"2022-01-25T13:29:42.000Z","size":3203,"stargazers_count":67,"open_issues_count":1,"forks_count":18,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-20T11:46:31.974Z","etag":null,"topics":["cocoapods","controller","image","image-slideshow","imageslideshow","ios","slideshow","slideshow-controller","swift","swift-5","swift5","viewcontroller","xcode"],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dimix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-16T11:25:41.000Z","updated_at":"2024-12-10T14:46:31.000Z","dependencies_parsed_at":"2022-09-12T21:13:52.441Z","dependency_job_id":null,"html_url":"https://github.com/dimix/ImageSlideShow","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimix%2FImageSlideShow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimix%2FImageSlideShow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimix%2FImageSlideShow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimix%2FImageSlideShow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dimix","download_url":"https://codeload.github.com/dimix/ImageSlideShow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247375072,"owners_count":20928942,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cocoapods","controller","image","image-slideshow","imageslideshow","ios","slideshow","slideshow-controller","swift","swift-5","swift5","viewcontroller","xcode"],"created_at":"2024-11-05T16:08:40.466Z","updated_at":"2026-03-05T07:31:58.516Z","avatar_url":"https://github.com/dimix.png","language":"Swift","readme":"![License](https://img.shields.io/cocoapods/l/ImageSlideShowSwift.svg?style=flat)\n![Platform](https://img.shields.io/badge/platform-ios-lightgray.svg?style=flat)\n![Version](https://img.shields.io/cocoapods/v/ImageSlideShowSwift.svg?style=flat)\n![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)\n\n# Swift ImageSlideShow for iOS\nImageSlideShow is a simple Slideshow for images (Picture, Photos) for your iOS apps written in Swift 5.\nYou can use this class on iPhone and iPad as well.\n\n![alt tag](https://raw.githubusercontent.com/dimix/ImageSlideShow/e6e9a62db2b4c82b58d5b298ef6802c0a8125970/demo.gif)\n\n## Features\n- All in one slideshow with generic protocol to provide images directly from the model\n- Pan-gesture-to-dismiss behaviour (like Facebook)\n\n## Installation with CocoaPods\n\n[CocoaPods](http://cocoapods.org) is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like ImageSlideShow in your projects. You can install it with the following command:\n\n```bash\n$ gem install cocoapods\n```\n\n\u003e CocoaPods 1.0.1+ is required to build ImageSlideShow (along with Swift 5 and Xcode 10).\n\n#### Podfile\n\nTo integrate ImageSlideShow into your Xcode project using CocoaPods, specify it in your `Podfile`:\n\n```ruby\nsource 'https://github.com/CocoaPods/Specs.git'\nplatform :ios, '9.0'\n\ntarget 'TargetName' do\n  use_frameworks!\n  pod 'ImageSlideShowSwift'\nend\n```\n\nThen, run the following command:\n\n```bash\n$ pod install\n```\n\n## Installation with Carthage\nCurrently only iOS is supported.\n\n1. Add the following to your [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile):\n\n    ```\n    github \"dimix/ImageSlideShow\"\n    ```\n\n2. Run `carthage update --platform ios`\n\n3. Copy the framework into your project and you are good to go.\n\n## How to Use\n\n#### 1. Import ImageSlideShowSwift module\n\n```swift\nImport ImageSlideShowSwift\n```\n\nImageSlideShowSwift\n#### 2. Instantiate the controller\n\n```swift\nImageSlideShowViewController.presentFrom(self){ [weak self] controller in\n\t\t\t\n\tcontroller.dismissOnPanGesture = true\n\tcontroller.slides = self?.images\n\tcontroller.enableZoom = true\n\tcontroller.controllerDidDismiss = {\n\t\tprint(\"Controller Dismissed\")\n\t}\n\t\t\t\n}\n```\n\nYou need to provide an array of `[ImageSlideShowProtocol]` objects.\nYou can use the Demo project to watch details.\n\n## Requirements\n\nCurrent version is compatible with:\n\n* Swift 5.0\n* XCode 10\n* iOS 9 or later\n\nAre you searching for an old (unsupported) version? Check out:\n\n* [Swift 2.3](https://github.com/dimix/ImageSlideShow/tree/feature/swift2.3)\n* [Swift 3](https://github.com/dimix/ImageSlideShow/tree/tags/0.1.2)\n* [Swift 4](https://github.com/dimix/ImageSlideShow/tree/tags/0.1.5)\n\n## Credits\n\nThanks to Lasse-Hansen for the Carthage support!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimix%2Fimageslideshow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimix%2Fimageslideshow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimix%2Fimageslideshow/lists"}