Debugging an iOS 8 device with Xcode 5.1.1

Can I debug using my device that I just upgraded to iOS 8? I want to continue using Xcode 5.1.1 if possible, but after updating the device I no longer see it in the scheme (replaced by "placeholder iOS")

+5
source share
1 answer

You cannot create a device running iOS 8 using Xcode versions prior to Xcode 6.0, because Xcode does not recognize the OS on your device. For testing on iOS 8 devices, you can use Xcode 6 GM (since Xcode 6 has not yet been released on the App Store).

Download Xcode 6 GM to the Apple Developer Center .

EDIT

In @rmaddy's comment, you can use Xcode 5 to test your application on an iOS 8 device (provided that it does not use code compatible only with iOS 8+), but you must connect the device while Xcode 6+ is running and allow file processing characters from your device (this can be viewed in Xcode Organizer). Then it should work with Xcode 5.

+5
source

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


All Articles