Use Xcode 8 with iOS 11

I want to use Xcode 8 with iOS 11.

should update Xcode. However, my code cannot be created by the new compiler, so I want to stay with Xcode 8.

enter image description here

How can i achieve this?

Apple revealed several new iOS 11 features at WWDC 2017.

+43
ios xcode ios11
Jun 06 '17 at 5:18
source share
5 answers

Check this out: At the moment, this only applies to debugging on an iOS device, not in Simulator

Here is the original post.

+42
Jun 08 '17 at 4:40
source share

At the moment, this is only for debugging on an iOS device, not for Simulator

Xcode 8 cannot support if you do not have a DeviceSupport folder for iOS 11.

  • You can download Xcode 9 beta (the latest Xcode 9) or get the DeviceSupport folder from another user.

  • Just copy it to a folder or create a symbolic link

sudo ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0\ \(15A372\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0

link: Use Xcode 7 with iOS 10

+54
Jun 06 '17 at 6:44
source share

I did this, and everything is fine, I still work in a commercial application using Xcode 8 + Swift 3, and in search of Xcode 9 beta with Swift 4. Just download Xcode 9 and using the Xcode 8 settings, install the command line tools use 9.0.

Xcode Preferences> Locations

+8
Jun 21 '17 at 23:10
source share

I preferred to copy the ALL folder:

 /Volumes/**HighSierra**/Applications/Xcode-**beta.app**/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0\ \(15A5278f\) 

at

  /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/**11** 

I can confirm that I can work on my iPhone 7 with iOS 11

+4
Jun 06 '17 at 19:50
source share

Obviously you can run iOS 11 with Xcode 8

-four
Jun 06 '17 at 5:23
source share



All Articles