首页 > 移动平台 > 详细

ios xcode Could not load the "MyImage.png" image referenced from a nib in the bundle with identifier "com.mytest.MyProject"

时间:2014-05-22 03:44:31      阅读:791      评论:0      收藏:0      [点我收藏+]

出现找不到xib指定的图片,需要指定图片的完整路径,不能只是图片名

详见:http://vocaro.com/trevor/blog/2012/10/21/xcode-groups-vs-folder-references/

An image stored as a folder reference will not work with Interface Builder! When editing, IB is able to find the image file and allows you to select it, but when it generates the XIB, it strips the folder location, which prevents it from being found. The result is a blank image and a runtime error:"Could not load the "MyImage.png" image referenced from a nib in the bundle with identifier "com.mytest.MyProject"

 

When loading a resource, you must specify the full path. Instead of:

[UIImage imageNamed:@"GoPago"];

you must do:

[UIImage imageNamed:@"Images/Icons/GoPago"];

ios xcode Could not load the "MyImage.png" image referenced from a nib in the bundle with identifier "com.mytest.MyProject",布布扣,bubuko.com

ios xcode Could not load the "MyImage.png" image referenced from a nib in the bundle with identifier "com.mytest.MyProject"

原文:http://www.cnblogs.com/coolbear/p/3738479.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!