Mimicking something wrong on Xcode 6

I installed the version of Xcode 6 gm. I created a new project and I run it on the iPhone 6 or iPhone 5 simulator with ios 8. Everything is fine. But when I simulate on iphone 5s, the deployment target of ios 7.1.Device is not full screen.it works like a 3.5 inch screen. Do you know the reason for this? Is this an Xcode 6 error?

enter image description here

+3
source share
2 answers

you must put the startup screen for iphone 5-640x1136 with the name Default-568h @ 2x or use alternatives to the directory.

+1
source

Figured out a solution in my case

  • Click the General Project Goals tab.
  • Scroll down to the application icons and launch screens .
  • Click the Use Asset Catalog button in the Image Launch Source section.
  • At the invitation, select Migration - this will create the LaunchImage category under the .xcassets image installed (by default Images.xcassets in my case)
  • Run the application - the problem with ifullscreen disappeared in my case

+1
source

Source: https://habr.com/ru/post/978149/


All Articles