iOS NSBundle的pathForResource返回nil

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

iOS NSBundle的pathForResource返回nil_第1张图片
屏幕快照 2017-09-25 18.32.46.png

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

iOS NSBundle的pathForResource返回nil_第2张图片
2b7c90cb-0e1e-4f50-a6a9-a1ddbc047685.png

你可能感兴趣的:(iOS NSBundle的pathForResource返回nil)