xcode常见错误处理

问题:xcode 7编译错误:bitcode is not supported on versions of iOS prior to 6.0

解决:Build Options | Enable Bitcode 设置为No即可

原因:这是Apple Watch使用的

 

问题:Build iOS时提示没法拉起Xcode:

  UnityException: Launching iOS project via Xcode4 failed. Check editor log for details。

解决:最新版xcode有这个问题,手动打开xcode即可。

 

问题:在使用Append模式导出xcode时,Unity出现以下错误:

  Error building Player: KeyNotFoundException: The given key was not present in the dictionary.

解决:This issue has been fixed. The fix will appear in 4.6.6p1 and 5.0.3.

 

问题:app installation failed an unknow error

解决:(1)Clean & Build(2)重启XCode(3)Window -> Projects -> 选择项目 -> 删除Derived Data

 

问题:

This application's application-identifier entitlement does not match that of the installed application. These values must match for an upgrade to be allowed.

解决:iPhone上已经装了包标识符一样的 App,删掉再运行。

 

Build iOS的2个选项:

  Append:只更新变化的部分

  Replace:重新替换所有部分

  在点run的时候你会发现,所有的scene和Resources里的东西都会打包成assets结尾的东西,复制到目录下,这个过程的长短,取决于你的scene有多大,你的Resources内容多不多。

 

 

你可能感兴趣的:(xcode常见错误处理)