Warning: The Copy Bundle Resources build phase contains

来源:互联网 发布:产品的seo关键词 编辑:程序博客网 时间:2024/06/06 07:27
在编译程序时,遇到了这样的Waring:

Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'ChatDemo/ChatDemo-Info.plist'.


分析原因:出现这个警告是可能添加了你的Info.plist文件到你的Build Phase 的 Copy Bundle Resource中了。


因为:INFOPLIST_FILE 编译设置指定Info.plist这个名字和你的target关联。当编译target时,Xcode读取编译设置并且复制Info.plist参数到你的应用bundle中。因为Xcode自动处理Info.plist,你不必添加这个文件到你的Build Phase 的 Copy Bundle Resources 中或者使它成为target的成员。


解决办法:从Build Phase的Copy Bundle Resource找到Info.plist文件,选中它点击下方的(-)键使它从Build Phase的Copy Bundle Resource移除。


参考:http://stackoverflow.com/questions/3095612/warning-the-copy-bundle-resources-build-phase-contains-this-targets-info-plist 这个里面是纯英文的,上面是我对其内容的翻译,翻译的句子有些生硬,望见谅,我也希望能够遇到同样问题的您。

0 0
原创粉丝点击