Could not load the "xxx.png" image referenced from a nib in the bundle with identifier "com.xxxx"

 打印台logs:  Could not load the "xxx.png" image referenced from a nib in the bundle with identifier "com.xxxx"

   我的解决方法,把图片拖入Assest.xcassets 中就解决了。

  

其他参考:

      1.出现该问题的原因是没有将相应地图片文件copy到bundle里,解决办法很简单,

点击项目名称,选择Build Phase,找到Copy Bundle Resources,点击“+”,将相应的资源文件添加即可

http://blog.csdn.net/zhangyanshen/article/details/46739431

     2.因为你在xib中加载的图片是.jpg的。你虽然是放到了蓝色的文件中,Ios给你做渲染了,所以你在xib中是可以看的到的,但是xib最后转换为纯代码。你最终还是找不到。

http://blog.csdn.net/u012131827/article/details/51198821

    3.是因为拖动文件夹到Supporting Files的时候选择了Create folder references应该选第一个Create groups。

  http://bbs.csdn.net/topics/390948061

原文地址:https://www.cnblogs.com/DafaRan/p/7561187.html