IPhoneXに関する質問。 iPhoneXの起動イメージ(1125px×2436px)を共通フォルダーに入れたい。 LaunchImageソースにはありません。 iPhoneXの起動イメージ名は何ですか? 「Default-iOS8-736h @ 3x」のように、 https://developer.Apple.com/ios/human-interface-guidelines/icons-and-images/launch-screenに名前が見つかりません/ 。
IPhone Xの静的起動画像を追加できます。追加できるのは[email protected]のみです
規則に従って、名前は[email protected]
(および[email protected]
)( 812はポイント単位の実際の高さ )。また、現在、ストーリーボードを使用した起動画面を使用して、iPhone Xと旧プラスサイズの両方のモデルにピクセル完璧な画像を作成する方法はないようです。
古いプロジェクトを使用して、iPhone Xの静的な起動画像を簡単な手順で追加できます。
1, Select Assets.xcassets select launch image folder.
2, Check "iOS 8.0 and later" in the right Attribute inspector panel.
3, An iPhone X place holder will appear, drag an image 375w812h @ 3x to it and you are done.
LaunchImageソース名が「LaunchImage」の場合。
名前は[UIImage imageNamed:@"[email protected]"]
である必要があります
PS:それを見つける方法?
/Users/hite/Library/Developer/CoreSimulator/Devices/5CFE3CFA-94F8-45EC-BAC5-xxx2/
などのバンドルディレクトリを開きますmyFit.app
やShow Package Contents
などのアプリケーションファイルを見つけます。UILaunchImages
キーを使用して、Info.plist
で名前を定義できます。
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-736h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{414, 736}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-667h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{375, 667}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 480}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-568h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-812h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{375, 812}</string>
</dict>
</array>
風景画像も同じように機能します。