Created
December 13, 2016 03:41
-
-
Save litefeel/763559b0578e731cf71a296e1b39a6ce to your computer and use it in GitHub Desktop.
使用低版本Xcode调试高版本iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 下载高版本xcode并安装 例如名字为 Xcode-beta.app | |
2. 将高版本Xcode中的设备支持链接到低版本的Xcode中 | |
~~~ | |
ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/$(iosVersion) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport | |
# 例如在低版本中指出ios10.2 | |
ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.2\ \(14C5062c\)/ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport | |
~~~ | |
3. 重开低版本的Xcode就可以调试高版本IOS了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment