Skip to content

Instantly share code, notes, and snippets.

@BalestraPatrick
Last active June 14, 2022 15:57
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save BalestraPatrick/e857bc34bcef8f37b86a to your computer and use it in GitHub Desktop.
Save BalestraPatrick/e857bc34bcef8f37b86a to your computer and use it in GitHub Desktop.
Custom URL scheme Launch Storyboard Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.patrickbalestra.customlaunchscreen</string>
<key>CFBundleURLSchemes</key>
<array>
<string>second</string>
</array>
</dict>
<dict>
<key>CFBundleURLName</key>
<string>com.patrickbalestra.customlaunchscreen</string>
<key>CFBundleURLSchemes</key>
<array>
<string>first</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreenFirst.storyboard</string>
<key>UILaunchStoryboards</key>
<array>
<dict>
<key>UIDefaultLaunchStoryboard</key>
<string>second</string>
<key>UILaunchStoryboardDefinitions</key>
<array>
<dict>
<key>UILaunchStoryboardFile</key>
<string>LaunchScreenFirst.storyboard</string>
<key>UILaunchStoryboardIdentifier</key>
<string>first</string>
</dict>
<dict>
<key>UILaunchStoryboardFile</key>
<string>LaunchScreenSecond.storyboard</string>
<key>UILaunchStoryboardIdentifier</key>
<string>second</string>
</dict>
</array>
<key>UIURLToLaunchStoryboardAssociations</key>
<dict>
<key>first</key>
<string>first</string>
<key>second</key>
<string>second</string>
</dict>
</dict>
</array>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment