从bundle中加载数据(如plist),把文件拖入数据中项目中,但是数据为空
NSString *stringPath =[NSBundle mainBundle]pathForResource:data ofType:format];
NSLog一下 stringPath 为空,
这个原因是 拖动过去没有真正的加入bundel中,需要在项目中设置,build ->phases ->copy bundle resources 下面添加自己的数据就可以.
从bundle中加载数据(如plist),把文件拖入数据中项目中,但是数据为空
NSString *stringPath =[NSBundle mainBundle]pathForResource:data ofType:format];
NSLog一下 stringPath 为空,
这个原因是 拖动过去没有真正的加入bundel中,需要在项目中设置,build ->phases ->copy bundle resources 下面添加自己的数据就可以.