美文网首页
Xcode使用中相关问题解决

Xcode使用中相关问题解决

作者: nilzz | 来源:发表于2020-01-14 05:06 被阅读0次
  • 使用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

img.png

解决方法1:修改.xcodeproj工程文件
原:productType = "com.apple.product-type.tool";
修改为:productType = "com.apple.product-type.application";

解决方法2:新的Xcode10版本无法识别 com.apple.product-type.tool
可以安装xcode6旧版本解决

相关文章

网友评论

      本文标题:Xcode使用中相关问题解决

      本文链接:https://www.haomeiwen.com/subject/kzroactx.html