Xcode使用中相关问题解决
2020-01-14 本文已影响0人
nilzz
-
使用Xcode应用版本10.1
-
00-编译出错:Command PhaseScriptExecution failed with a nonzero exit code
解决方法:xcode菜单File->project Settings 选择 Legacy Build System 使用旧的编译系统即可
img.png
-
01-编译出错:Command /bin/sh failed with exit code 255
解决方法:在 TARGETS -> Build Phases -> Run Script中,勾选下面两项。
img.png
-
02-编译出错:Showing Recent Messages Target specifies product type 'com.apple.product-type.tool', but there's no such product type for the 'iphonesimulator' platform
解决方法1:修改.xcodeproj工程文件
原:productType = "com.apple.product-type.tool";
修改为:productType = "com.apple.product-type.application";
解决方法2:新的Xcode10版本无法识别 com.apple.product-type.tool
可以安装xcode6旧版本解决