2

我在 iPhone/iPad 开发的故事板文件中手动添加元素。
事实上,我为 iPad 复制了故事板中的视图,并计算了 iPhone 的比例尺寸(1024x768 到 480x320)。
它可以正常工作,但是在其上添加包含多个图像视图时出现错误:

*CompileStoryboard iboniaIphoneLGT/LGT_iphone.storyboard
    cd /Users/imac/Desktop/WORKSPACE
    setenv IBSC_MINIMUM_COMPATIBILITY_VERSION 5.1
    setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    setenv XCODE_DEVELOPER_USR_PATH /Applications/Xcode.app/Contents/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool 
    --errors 
    --warnings 
    --notices 
    --output-format human-readable-text 
    --compile 
            /Users/imac/Desktop/WORKSPACE/build/Debug-iphonesimulator/LGT.app/LGT_iphone.storyboardc 
            /Users/imac/Desktop/WORKSPACE/iboniaIphoneLGT/LGT_iphone.storyboard 
    --sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk

Command /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool 
failed with exit code 255*

消息不明确,这个消息的可能原因是什么???

雷克斯

4

3 回答 3

2

我收到此错误,最终发现当我在项目导航器中选择 xib 中使用的图像之一时,它没有在“目标成员资格”下的文件检查器中检查项目。一旦我检查了这一点,我就再也没有收到错误了。

因此,我建议检查 xib 中使用的所有图像和其他资源,并确保它们的目标成员资格正确。

于 2012-09-19T20:44:27.843 回答
0

对我来说,解决方案只是删除我的一些警告。我更改的警告只是将 var:s 更改为 let:s 在 4 个地方未更改的属性上

于 2017-04-21T08:10:20.120 回答
0

就我而言,这是由添加一个等宽约束引起的。它没有任何意义。我现在对 Xcode 非常警惕。

于 2017-03-11T08:10:16.533 回答