Xcode7 will destroy the layout of iPhone 6 and later.

Asked 1 years ago, Updated 1 years ago, 111 views

After updating to Xcode7, the size and layout of the iPhone 6 and later models will be corrupted.
(Both actual machine and simulator)

Target→General→App Icons and Launch Images

アップデートBefore update: AppIcon, LaunchImage, blank
②After update: AppIcon, LaunchImage, Launch Image
Failed to configure as shown in

では was compatible with 6,6s, and では was compatible with 5s.
I also tried to add LaunchScreen.storyboard, but
WatchOS storyboards do not support target device type 'iPhone'
There was an error and we were unable to proceed after that.
I also looked into how to resolve this error, but I didn't know....

What should I do to make the iPhone 6 and later compatible with the size?

ios objective-c xcode iphone xcode7

2022-09-30 21:10

1 Answers

First of all, WatchOS storyboards do not support target device type 'iPhone' Regarding this error, the storyboard for watchOS is probably built with a scheme for iPhone App.
Check out the "Target Membership" settings on the Storyboard.

Use Auto Layout to accommodate various screen sizes.This feature is available from iOS7 and later.Currently, various screen size devices including iPad are available, so you can think that Auto Layout is almost essential.If you have enough energy, you may want to enable Size Classes to rotate the screen and handle split views of the iPad.


2022-09-30 21:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.