当前位置: 代码迷 >> 综合 >> unity 使用xcode5.1 launching iOS project via Xcode4 failed
  详细解决方案

unity 使用xcode5.1 launching iOS project via Xcode4 failed

热度:26   发布时间:2024-01-09 16:13:02.0

unity在使用Xcode5.1时,build&run 会抛出异常的,这是unity的一个bug,不过据说unity4.5 会把它修好的 下面有一个 临时的解决方案:

1. 在unit的安装目录下找到:

Unity.app/Contents/BuildTargetTools/iPhonePlayer/Unity4XC.xcplugin/Contents/Info.plist
2. 打开并找到下面的内容:
<key>DVTPlugInCompatibilityUUIDs</key>
<array>
<string>63FC1C47-140D-42B0-BB4D-A10B2D225574</string>
<string>37B30044-3B14-46BA-ABAA-F01000C27B63</string>
</array>
3. 插入一行 下面的内容(一定要在  </array> 之前
<string>A2E4D43F-41F4-4FB9-BB94-7177011C9AED</string>
4. 重启XCode就ok啦

  相关解决方案