{"id":24302868,"url":"https://github.com/digipolitan/splash-kit","last_synced_at":"2025-09-26T06:30:25.708Z","repository":{"id":62455879,"uuid":"108097286","full_name":"Digipolitan/splash-kit","owner":"Digipolitan","description":null,"archived":false,"fork":false,"pushed_at":"2018-12-17T21:45:15.000Z","size":48,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2024-09-17T02:31:11.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Digipolitan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-24T08:17:03.000Z","updated_at":"2019-06-24T06:22:12.000Z","dependencies_parsed_at":"2022-11-01T23:46:25.006Z","dependency_job_id":null,"html_url":"https://github.com/Digipolitan/splash-kit","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digipolitan%2Fsplash-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digipolitan%2Fsplash-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digipolitan%2Fsplash-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Digipolitan%2Fsplash-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Digipolitan","download_url":"https://codeload.github.com/Digipolitan/splash-kit/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234292493,"owners_count":18809356,"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":[],"created_at":"2025-01-17T00:19:56.967Z","updated_at":"2025-09-26T06:30:20.379Z","avatar_url":"https://github.com/Digipolitan.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"SplashKit\n=================================\n\n[![Swift Version](https://img.shields.io/badge/swift-4.2-orange.svg?style=flat)](https://developer.apple.com/swift/)\n[![Build Status](https://travis-ci.org/Digipolitan/dependency-injector.svg?branch=master)](https://travis-ci.org/Digipolitan/splash-kit)\n[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/SplashKit.svg)](https://img.shields.io/cocoapods/v/SplashKit.svg)\n[![Carthage Compatible](https://img.shields.io/badge/carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![Platform](https://img.shields.io/cocoapods/p/SplashKit.svg?style=flat)](http://cocoadocs.org/docsets/SplashKit)\n[![Twitter](https://img.shields.io/badge/twitter-@Digipolitan-blue.svg?style=flat)](http://twitter.com/Digipolitan)\n\nCustomizable splash screen system wich can handle multiple splash navigation and display\n\n## Installation\n\n### CocoaPods\n\nTo install SplashKit with CocoaPods, add the following lines to your `Podfile`.\n\n```ruby\nsource 'https://github.com/CocoaPods/Specs.git'\nplatform :ios, '9.0'\nuse_frameworks!\n\npod 'SplashKit'\n```\n\n### Carthage\n\n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.\n\nYou can install Carthage with [Homebrew](http://brew.sh/) using the following command:\n\n```bash\n$ brew update\n$ brew install carthage\n```\n\nTo integrate SplashKit into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```\ngithub 'Digipolitan/splash-kit ~\u003e 1.0\n```\n\nRun `carthage update` to build the framework and drag the built `SplashKit.framework` into your Xcode project.\n\n## The Basics\n\n### Default Splash\n\nFirst add the key **environment** into your **Info.plist**, check the [RuntimeEnvironment](https://github.com/Digipolitan/runtime-environment) repository.\n\n```xml\n\u003ckey\u003eenvironment\u003c/key\u003e\u003cstring\u003estaging\u003c/string\u003e\n```\n\nThen create your splashscreen view (.xib) and make it inherit from **DefaultSplashScreenViewController** and set your splashscreen actions on **AppDelegate.swift** like follow\n\n```swift\nfunc application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -\u003e Bool {\n        let window = UIWindow(frame: UIScreen.main.bounds)\n        window.rootViewController = SplashNavigationController.newInstance(splashViewControllers:\n        DefaultSplashViewController(nibName: \"AppDefaultSplashViewController\", bundle: nil)) { [weak self] _ in\n            guard let target = self,\n                let window = target.window else {\n                    return\n            }\n            UIView.transition(with: window, duration: 1, options: .transitionCrossDissolve, animations: {\n                UIView.setAnimationsEnabled(false)\n                window.rootViewController = UINavigationController(rootViewController: ViewController())\n                UIView.setAnimationsEnabled(true)\n            }, completion: nil)\n        }\n        window.makeKeyAndVisible()\n        self.window = window\n\n        return true\n    }\n```\n\nThis is an example of using the default splash.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for more details!\n\nThis project adheres to the [Contributor Covenant Code of Conduct](CODE_OF_CONDUCT.md).\nBy participating, you are expected to uphold this code. Please report\nunacceptable behavior to [contact@digipolitan.com](mailto:contact@digipolitan.com).\n\n## License\n\nSplashKit is licensed under the [BSD 3-Clause license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigipolitan%2Fsplash-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigipolitan%2Fsplash-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigipolitan%2Fsplash-kit/lists"}