在iOS项目开发过程中,总会遇到或多或少的问题,比如说,在使用NSBundle pathForResource取不到值,着实让人纠结,下面将奉上超级解决方案。
但是运行出来,path一直是null
师父找了好久,终于找到答案了
http://stackoverflow.com/questions/3949368/nsbundle-pathforresource-is-null
[img]http://dl2.iteye.com/upload/attachment/0101/0417/f65f605f-ea6e-3436-937f-3db5a56ce5a5.jpg[/img]
在这里添加了文件之后,然后再运行,文件就能取到了。
NSString *path = [[NSBundle mainBundle] pathForResource:@"sortednames" ofType:@"plist"];
NSLog(@"path = %@", path);
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
但是运行出来,path一直是null
师父找了好久,终于找到答案了
http://stackoverflow.com/questions/3949368/nsbundle-pathforresource-is-null
[img]http://dl2.iteye.com/upload/attachment/0101/0417/f65f605f-ea6e-3436-937f-3db5a56ce5a5.jpg[/img]
在这里添加了文件之后,然后再运行,文件就能取到了。