有时候想取工程中的文件路径,比如图片,用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 下面添加自己的数据就可以了。
网友评论