美文网首页
iOS NSBundle的pathForResource返回ni

iOS NSBundle的pathForResource返回ni

作者: 晨寂 | 来源:发表于2017-09-25 18:46 被阅读0次

有时候想取工程中的文件路径,比如图片,用NSBundle的 pathForResource: ofType: 返回却是nil

屏幕快照 2017-09-25 18.32.46.png

[[NSBundle mainBundle] pathForResource:@"img_1" ofType:@"jpg"]; 返回的结果为nil。
这是因为 在添加这些图片的时候,这些文件没有添加到mainBundle中,需要在项目设置:targets -> build phases -> copy bundle resources 下面添加自己的数据就可以了。

2b7c90cb-0e1e-4f50-a6a9-a1ddbc047685.png

相关文章

网友评论

      本文标题:iOS NSBundle的pathForResource返回ni

      本文链接:https://www.haomeiwen.com/subject/sxvdextx.html