Skip to content

Instantly share code, notes, and snippets.

@fcaldarelli
Last active August 29, 2015 14:27
Show Gist options
  • Save fcaldarelli/cb98e73bd58c6b31ead1 to your computer and use it in GitHub Desktop.
Save fcaldarelli/cb98e73bd58c6b31ead1 to your computer and use it in GitHub Desktop.
Launch screen image size in info.plist
UILaunchImage = Default // This is for iOS 6, if you need it
UILaunchImages // iOS 7, 8
- [0]
- UILaunchImageName = Default
- UILaunchImageMinimumOSVersion = 7.0
- UILaunchImageSize = {320, 480}
- UILaunchImageOrientation = Portrait
- [1]
- UILaunchImageName = Default-568h
- UILaunchImageMinimumOSVersion = 7.0
- UILaunchImageSize = {320, 568}
- UILaunchImageOrientation = Portrait
- [2]
- UILaunchImageName = Default-667h
- UILaunchImageMinimumOSVersion = 8.0
- UILaunchImageSize = {375, 667}
- UILaunchImageOrientation = Portrait
- [3]
- UILaunchImageName = Default-736h
- UILaunchImageMinimumOSVersion = 8.0
- UILaunchImageSize = {414, 736}
- UILaunchImageOrientation = Portrait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment