Xcode 4.2:编译错误(Command / Developer / usr / bin / ibtool失败,退出代码为255)

时间:2011-12-23 04:33:18

标签: xcode compiler-errors xib

在MacBook Air上的新OS X Lion上安装了Xcode 4.2,无法编译我的旧项目。创建新的单窗口项目(基于视图的应用程序) - 不做任何更改,只是尝试编译它并得到错误:

CompileXIB Test3/en.lproj/ViewController.xib
    cd /Volumes/MacExt/Projects/iOS/Test3
    setenv IBC_MINIMUM_COMPATIBILITY_VERSION 5.0
    setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    setenv XCODE_DEVELOPER_USR_PATH /Developer/usr/bin/..
    /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/lial/Library/Developer/Xcode/DerivedData/Test3-fvcbdbtitujnwabzsgjgcbugfmoy/Build/Products/Debug-iphonesimulator/Test3.app/en.lproj/ViewController.nib /Volumes/MacExt/Projects/iOS/Test3/Test3/en.lproj/ViewController.xib
--sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk

Command /Developer/usr/bin/ibtool failed with exit code 255

尝试打开xib时出现内部错误并选择:崩溃并继续

Xcode encountered an internal logic error. Choose "Continue" to continue running Xcode in an inconsistent state.  Choose "Crash" to halt Xcode and file a bug with Crash Reporter. Choosing "Crash" will result in the loss of all unsaved data.

请帮帮我,我该如何解决这个问题? Xcode不稳定吗?或者我的某些项目设置不正确?

1 个答案:

答案 0 :(得分:0)

我刚刚经历过同样的事情。由于git合并,它在故事板中是一个重复的UILabel。如果两个UI元素具有相同的内部ID,显然Xcode将崩溃。

我找到责任问题的方法是:

  • 迭代地退回git历史记录,检查每个提交,直到找到第一个没有崩溃Xcode的故事板。
  • 一旦你的提交开始崩溃,请检查HEAD并迭代恢复问题提交中的故事板更改。继续缩小范围,直到你有一个UI元素或一行会导致崩溃。
  • 永久还原负责任的更改并重新启动Xcode。再次打开故事板,您可能会被警告内部不一致。同意Xcode提出的建议更改,但请查看它们。
  • 如有必要,您现在可能会尝试重新创建UI元素,或者从头开始更改导致问题的原因。