{"id":13611017,"url":"https://github.com/IFTTT/IFTTTLaunchImage","last_synced_at":"2025-04-13T01:34:07.482Z","repository":{"id":25505035,"uuid":"28936438","full_name":"IFTTT/IFTTTLaunchImage","owner":"IFTTT","description":"Put your asset catalog launch images to work for you.","archived":false,"fork":false,"pushed_at":"2023-10-11T20:41:05.000Z","size":7340,"stargazers_count":314,"open_issues_count":0,"forks_count":28,"subscribers_count":30,"default_branch":"main","last_synced_at":"2024-10-31T16:20:29.853Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","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/IFTTT.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,"governance":null}},"created_at":"2015-01-07T22:04:22.000Z","updated_at":"2024-10-04T10:22:47.000Z","dependencies_parsed_at":"2022-08-01T05:38:35.847Z","dependency_job_id":"64b0a6a3-839c-4784-ab3b-b542449f55d3","html_url":"https://github.com/IFTTT/IFTTTLaunchImage","commit_stats":{"total_commits":32,"total_committers":3,"mean_commits":"10.666666666666666","dds":0.28125,"last_synced_commit":"72e2226ee32ff078ed93cf61cfc0e9d8b3a5d34c"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IFTTT%2FIFTTTLaunchImage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IFTTT%2FIFTTTLaunchImage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IFTTT%2FIFTTTLaunchImage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IFTTT%2FIFTTTLaunchImage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IFTTT","download_url":"https://codeload.github.com/IFTTT/IFTTTLaunchImage/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223558472,"owners_count":17165137,"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":"2024-08-01T19:01:50.960Z","updated_at":"2024-11-07T17:31:07.191Z","avatar_url":"https://github.com/IFTTT.png","language":"Objective-C","funding_links":[],"categories":["Objective-C"],"sub_categories":[],"readme":"# IFTTTLaunchImage\n\n[![Build Status](https://travis-ci.org/IFTTT/IFTTTLaunchImage.svg?branch=master)](https://travis-ci.org/IFTTT/IFTTTLaunchImage) [![Coverage Status](https://coveralls.io/repos/IFTTT/IFTTTLaunchImage/badge.svg)](https://coveralls.io/r/IFTTT/IFTTTLaunchImage)\n\n[Asset Catalogs](https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html) in Xcode 5+ are pretty neat. You can keep all of your app's assets in one place, you can see at a glance which image scales you're using, and you can even use asset catalogs for your app's icon and launch image.\n\nWhen your app first launches, you'll probably have some loading or setup to do before you can display your initial user interface. Instead of showing your user a broken or half-loaded interface, why not animate a smooth transition from your app's launch image to your fully loaded user interface? Unlike normal images in your asset catalog, unfortunately it is not obvious how to reach into your asset catalog to programmatically access the correct launch image for the user's current device.\n\n`IFTTTLaunchImage` is a set of classes that simplify working with launch images in your asset catalog as well as nib-based launch screens.\n\n## What's in the Box\n\n- `UIImage+IFTTTLaunchImage` and `UIDevice+IFTTTLaunchImage` are simple categories that make it easy to access the correct launch image for the user's current device.\n- `IFTTTSplashView` is a view containing your launch image or launch screen that you can display when your app launches. When your app has finished launching and loading its initial interface, the splash view can be dismissed using one of several nifty built-in animations.\n\n`IFTTTSplashView` also has full support for `UINib`-based Launch Screens as well as splash screens that display a custom `UIView`. Check out `IFTTTSplashView.h` for more details.\n\n## Examples\n\n`ExampleImage` is an app that animates from its launch image to its initial interface. \n\n`ExampleLaunchScreen` is an app that animates from its nib-based launch screen to its initial interface.\n\nTo try the example projects:\n\n```bash\npod try IFTTTLaunchImage\n```\n\nOr just `open IFTTTLaunchImage.xcworkspace` or `open IFTTTLaunchScreen.xcworkspace`.\n\nHere it is in action in the `ExampleImage` app, using the built-in animation `IFTTTSplashAnimationDrop`:\n\n![IFTTTLaunchImage](https://github.com/IFTTT/IFTTTLaunchImage/blob/master/launch.gif)\n\n## Usage\n\nTo run the example project, clone the repo, and run `pod install` from the `Example` directory.\n\n## Installation\n\nIFTTTLaunchImage is available through [CocoaPods](http://cocoapods.org). To install\nit, add the following line to your `Podfile`:\n\n    pod \"IFTTTLaunchImage\"\n\n## Author\n\n[Jonathan Hersh](https://github.com/jhersh)\n\n## License\n\nIFTTTLaunchImage is available under the MIT license. See the LICENSE file for more info.\n\nCopyright © 2015 IFTTT Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FIFTTT%2FIFTTTLaunchImage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FIFTTT%2FIFTTTLaunchImage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FIFTTT%2FIFTTTLaunchImage/lists"}