Xcode 5 - Xcode 4 Project Run

I have a project that I started in the SDK for iOS 6. I downloaded Xcode 5 Beta with iOS 7 and successfully completed it.

However, to send the project, I need to go back to SDK 6 and Xcode 4. When I do this, I get the following message for every XIB file that I have in the project:

enter image description here

How to fix this so that I can compile and run from SDK 6 and Xcode 4?

+6
source share
1 answer

This is actually a very simple answer.

Open the storyboard file on Xcode 5, and then:

  • Open File Inspector
  • In the Layout section of the interface designer, change Open from to Xcode 4.6 (if it is 5.x).
  • Save, close the project and open it with the old Xcode.

Now it should work.

This is the same method as in earlier versions, so I assume that is normal for the NDA case (you can do the same on Xcode 4.6 to work with the old version).

+13
source

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


All Articles