Current setup:
When I conne
Just copy the folder DeviceSupport/8.3
from Xcode 6.3 to Xcode 6.2.
Details:
/Applications/Xcode_6.2.app
and /Applications/Xcode_6.3.app
(or similar names)Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
8.3 (12F69)
cp -r '/Applications/Xcode_6.3.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.3 (12F69)' '/Applications/Xcode_6.2.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport'
ln -s '/Applications/Xcode_6.3.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.3 (12F69)' '/Applications/Xcode_6.2.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport'
Diego Freniche's solution (copying the whole iPhoneOS.platform
folder) was a great help, but when I ran my app from Xcode 6.2, it looked slightly different than it did when I deployed an ipa file on the phone (buttons in wrong positions, status bar display wrong). I guess Xcode got confused and built the app as if it was targeted at a different iOS version.
With this solution (only copy one folder in DeviceSupport
), it looks like the app works exactly as it is supposed to. I'll let you know if I encounter problems, but I haven't seen any so far.