[NSBundle mainBundle] pathForResource: ofType: 获取不到数据
从bundle中获取数据,明明把数据添加到项目中了,但就是不对。
NSString *newDataName = [[NSBundle mainBundle] pathForResource:dataName ofType:format]; 为空
后来从网上查到相关信息,当时添加是直接拖拽过去,没有真正加入到bundle中,需要在项目设置中,build phases-> copy bundle resources 下面 添加+ 自己的数据就可以了。
网友评论